html {
  box-sizing: border-box;
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(236, 214, 255);
  justify-content: space-between;
}
body main {
  width: 100%;
  height: 100%;
}
body main .stains {
  display: none;
}
body main .message-container {
  padding: 6.25rem 1.875rem 0.625rem 1.9rem;
}
body main .message-container .message {
  width: 100%;
  color: rgb(50, 0, 70);
  border: none;
  resize: none;
  height: 20rem;
  outline: none;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif;
  background-color: rgb(236, 214, 255);
}
body main .message-container .message::-moz-placeholder {
  color: rgb(50, 0, 70);
}
body main .message-container .message:-ms-input-placeholder {
  color: rgb(50, 0, 70);
}
body main .message-container .message::placeholder {
  color: rgb(50, 0, 70);
}
body main .message-container .recommendation-container {
  color: rgb(50, 0, 70);
  display: flex;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
body main .message-container .recommendation-container img {
  width: 1rem;
  margin-right: 3px;
}
body main .message-container .buttons-container {
  display: flex;
  flex-direction: column;
}
body main .message-container .buttons-container button {
  border: none;
  padding: 20px 0px;
  font-size: 1.3rem;
  margin-bottom: 10px;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
}
body main .message-container .buttons-container .button-1 {
  color: white;
  background-color: rgb(86, 32, 160);
}
body main .message-container .buttons-container .button-2 {
  color: rgb(86, 32, 160);
  border: 1px solid rgb(86, 32, 160);
  background-color: white;
}
body main .message-encrypted-container {
  padding: 2rem;
  margin-bottom: 3rem;
}
body main .message-encrypted-container .message-encrypted {
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 9px 9px 12px #999999;
}
body main .message-encrypted-container .message-encrypted .no-encrypted {
  display: none;
  font-family: "Poppins", sans-serif;
}
body main .message-encrypted-container .message-encrypted .no-encrypted img {
  display: none;
}
body main .message-encrypted-container .message-encrypted .no-encrypted h2 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-align: center;
}
body main .message-encrypted-container .message-encrypted .no-encrypted p {
  font-size: 1.2rem;
  text-align: center;
}
body main .message-encrypted-container .message-encrypted .no-encrypted-active {
  display: inline;
}
body main .message-encrypted-container .message-encrypted .encrypted {
  display: none;
  font-family: "Poppins", sans-serif;
}
body main .message-encrypted-container .message-encrypted .encrypted div {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
body main .message-encrypted-container .message-encrypted .encrypted img {
  display: none;
}
body main .message-encrypted-container .message-encrypted .encrypted button {
  width: 100%;
  padding: 20px;
  color: rgb(86, 32, 160);
  font-size: 1.3rem;
  border-radius: 20px;
  border: 1px solid rgb(86, 32, 160);
  background-color: white;
}
body main .message-encrypted-container .message-encrypted .encrypted-active {
  display: inline;
}
body footer {
  width: 100%;
  padding: 20px 30px;
  background-size: cover;
  background-image: url("../assets/footer.jpg");
}
body footer img {
  width: 1.3rem;
}

@media (min-width: 768px) {
  body main .stains {
    height: 40%;
    display: inline;
    position: absolute;
  }
  body main .message-container {
    padding: 12.5rem 4.4rem 0.625rem 4.4rem;
  }
  body main .message-container .message {
    font-size: 2.3rem;
  }
  body main .message-container .recommendation-container img {
    width: 1.3rem;
    margin-right: 6px;
  }
  body main .message-container .recommendation-container p {
    font-size: 1.3rem;
  }
  body main .message-container .buttons-container {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  body main .message-container .buttons-container button {
    width: 100%;
    font-size: 1.5rem;
  }
  body main .message-encrypted-container {
    padding: 2rem 4.4rem;
  }
  body main .message-encrypted-container .message-encrypted .no-encrypted h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  body main .message-encrypted-container .message-encrypted .no-encrypted p {
    font-size: 1.4rem;
  }
  body main .message-encrypted-container .message-encrypted .encrypted div {
    font-size: 1.5rem;
  }
  body main .message-encrypted-container .message-encrypted .encrypted button {
    font-size: 1.5rem;
  }
  body footer {
    width: 100%;
    padding: 20px 30px;
    background-size: cover;
    background-image: url("../assets/footer.jpg");
  }
  body footer img {
    width: 1.3rem;
  }
}
@media (min-width: 1024px) {
  body main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 89px);
  }
  body main .stains {
    top: 0;
    left: 0;
    height: 25rem;
    display: inline;
    position: absolute;
  }
  body main .message-container {
    width: 50%;
    padding: 5rem 2rem 2rem 6rem;
  }
  body main .message-container .message {
    font-size: 1.7rem;
    margin-bottom: 60px;
  }
  body main .message-container .recommendation-container {
    margin-bottom: 20px;
  }
  body main .message-container .recommendation-container img {
    margin-right: 10px;
  }
  body main .message-container .buttons-container {
    flex-direction: row;
  }
  body main .message-container .buttons-container button {
    font-size: 1.4rem;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  body main .message-container .buttons-container .button-1:hover {
    cursor: pointer;
    background-color: rgb(106, 38, 202);
  }
  body main .message-container .buttons-container .button-2:hover {
    cursor: pointer;
    background-color: rgb(249, 244, 255);
  }
  body main .message-encrypted-container {
    margin-top: 2rem;
  }
  body main .message-encrypted-container .message-encrypted {
    width: 26rem;
    height: 80vh;
    overflow: auto;
    position: relative;
    border-radius: 30px;
  }
  body main .message-encrypted-container .message-encrypted .no-encrypted img {
    top: 0;
    right: 0;
    width: 90%;
    display: inline;
    position: absolute;
  }
  body main .message-encrypted-container .message-encrypted .no-encrypted h2 {
    top: 60%;
    left: 40px;
    right: 40px;
    position: absolute;
  }
  body main .message-encrypted-container .message-encrypted .no-encrypted p {
    top: 73%;
    left: 40px;
    right: 40px;
    position: absolute;
  }
  body main .message-encrypted-container .message-encrypted .encrypted div {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  body main .message-encrypted-container .message-encrypted .encrypted img {
    width: 90%;
    display: inline;
    margin-bottom: 20px;
  }
  body main .message-encrypted-container .message-encrypted .encrypted button {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  body main .message-encrypted-container .message-encrypted .encrypted button:hover {
    cursor: pointer;
    background-color: rgb(249, 244, 255);
  }
  body main .message-encrypted-container .message-encrypted .encrypted-active {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
}/*# sourceMappingURL=styles.css.map */