body {
  background-color: #ff6262;
  padding: 0;
  margin: 0;
}

.container {
  position: absolute;
  height: 100vh;
  display: block;
  width: 100vw;
}

#heart1 {
  position: absolute;
  top: -10%;
  left: -100px;
  height: 110%;
  width: auto;
  opacity: 50%;
  z-index: 100;
}

#hearts {
  position: absolute;
  height: 60%;
  width: auto;
  bottom: 0;
  right: 0px;
  opacity: 50%;
}
p {
  margin: 0;
  padding: 0;
}

.text-container {
  width: 100%;
  text-align: center;
  position: relative;
  top: 20%;
}

#hvd {
  font-family: "Andada Pro", serif;
  font-size: 2.8rem;
  color: #ffd5d5;
}

#ily {
  font-family: "Paytone One", sans-serif;
  font-size: 8.5rem;
  color: #ffd5d5;
  line-height: 1.1;
}

#msg {
  position: relative;
  font-family: "Andada Pro", serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-top: 3%;
  color: #ffd5d5;
  z-index: 200;
}

#enterSite {
  font-family: "Andada Pro", serif;
  font-size: 1.5rem;
  padding: 15px 30px;
  background-color: #ffd5d5;
  color: #ff6262;
  border: none;
  margin-top: 50px;
  border-radius: 20px;
}

#enterSite:hover {
  background-color: #ffd5d5cc;
  color: #ff6262;
  cursor: pointer;
}

#authenticate {
  display: none;
}

/* Authenticate Page */

.msg-container {
  position: relative;
  height: 80vh;
  width: 80vw;
  background-color: #ffd5d5cc;
  z-index: 100;
  top: 10vh;
  left: 10vw;
  margin: 0;
  padding: 0;
  border-radius: 30px;
}

#passwordForm {
  position: relative;
  left: 20%;
  top: 20%;
  height: 50%;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#password {
  position: relative;
  padding: 20px;
  width: 80%;
  font-size: 1.5rem;
  border: none;
  border-radius: 10px;
  text-align: center;
  color: #ff6262;
  background-color: #fff0f0;
}

#password::placeholder {
  color: #ff6262;
  font-family: "Andada Pro", serif;
}

#password:focus {
  outline: none;
  outline: 2px solid #ff6262;
}

#submitPassword {
  font-family: "Andada Pro", serif;
  font-size: 1.5rem;
  width: 25%;
  padding: 20px 30px;
  background-color: #ff6262;
  color: #fff;
  border: none;
  border-radius: 20px;
  margin-top: 30px;
}

#errorMessage {
  font-family: "Andada Pro", serif;
  font-size: 1.3rem;
  color: #ff0000ee;
  text-align: center;
  margin-top: 10px;
}

#submitPassword:hover {
  background-color: #ff6262cc;
  color: #fff;
  cursor: pointer;
}

/* Message */
.message-container {
  width: 50%;
  margin: auto;
  text-align: center;
  position: relative;
  top: 20%;
  z-index: 200;
}

#hello {
  position: relative;
  font-family: "Paytone One", sans-serif;
  font-size: 8.5rem;
  color: #ffd5d5;
  line-height: 1.1;
  z-index: 200;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 7rem;
  width: 100%;
  margin-top: 2rem;
}

.icons button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.icons button img {
  height: 3rem;
  opacity: 0.8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #ffd5d5;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 60%;
  max-width: 65rem;
}

.modal-content p {
  font-family: "Andada Pro", serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}
