@import url("https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f3f5fc;
  font-family: "Stardos Stencil", cursive;
}

.logo {
  height: 48px;
  margin: 25px 0 0px 40px;
  width: 31px;
}

.container {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 20px;
}

.aside__left {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 100px;
  width: 50%;
}

.input {
  background: #f3f5fc;
  border: none;
  caret-color: #0a3871;
  color: #0a3871;
  font-family: "Stardos Stencil", cursive;
  font-size: 24px;
  height: 400px;
  padding: 25px;
  resize: none;
  width: 100%;
}

.input::placeholder {
  color: #0a3871;
}

.input:focus {
  outline: none;
}

.nota {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #df28289d;
  border-radius: 20px;
  display: flex;
  font-size: 12px;
  justify-content: center;
  margin: 12px 0 12px 0;
  padding: 5px 10px ;
}

.symbol {
  background: #ffffff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
}

.symbol-text {
  color: #df2828a6;
}

.botones__container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
  width: 100%;
}

.botones {
  border: 1px solid #0a3871;
  border-radius: 20px;
  font-family: "Stardos Stencil", cursive;
  font-size: 24px;
  font-weight: lighter;
  padding: 10px;
  width: 200px;
}

.encriptar {
  background: #0a3871;
  color: #ffffff;
}

.encriptar:hover {
  background: #082549;
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.5);
}

.desencriptar {
  background: #d8dfe8;
  color: #0a3871;
}

.desencriptar:hover {
  background: #88a0b8;
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.5);
}

.aside__right {
  align-items: center;
  display: flex;
  background: transparent;
  justify-content: center;
  width: 35%;
}

.aside__right--empty {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 24px 32px -8px rgba(0, 0, 0, 0.08);
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding: 15px;
}

.show-empty {
  display: flex;
}

.hide-empty {
  display: none;
}

.banner {
  width: 75%;
}

.titulo__parrafo {
  font-size: 32px;
  text-align: center;
}

.parrafo {
  font-size: 24px;
  text-align: center;
}

.footer {
  background: #adb5bd;
  font-weight: bolder;
  margin-top: 25px;
  padding: 25px;
  text-align: center;
}

.footer__container {
  margin: 25px;
}

.enlace {
  text-decoration: none;
}
.footer__img {
  border: 50%;
  height: 25px;
  margin: 10px;
  width: 25px;
}

@media screen and (max-width: 768px) {
  .container {
    padding-bottom: 0px;
  }
  .aside__left {
    padding-left: 0;
    min-width: 300px;
  }
  .input {
    padding: 10px;
  }
  .aside__right {
    gap: 20px;
    justify-content: center;
    padding: 0;
    min-width: 301;
  }
  .banner {
    width: 95%;
    margin-top: 25px;
  }
}

@media screen and (max-width: 600px) {
  .container {
    flex-wrap: wrap;
    padding-bottom: 25px;
  }

  .aside__left {
    padding: 15px;
    width: 95%;
  }
  .input {
    padding: 25px;
  }
  .aside__right {
    gap: 20px;
    justify-content: center;
    padding: 15px;
    width: 95%;
  }
  .banner {
    display: none;
  }
}
