* {
  font-family: 'Roboto Condensed', sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: aqua;
}

.login {
  background-image: url("../img/mosaico.jpg");
  background-repeat: repeat;
  background-size: cover;
  animation: moveBackground 90s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 30px;
}

@keyframes moveBackground {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: -1000px 1000px;
  }
}

.cajaCentral {
  background-color: #567189;
  border-radius: 20px;
  font-size: 1rem;
  color: #fad6a5;
  text-align: center;
  padding: 10px;
  -webkit-box-shadow: -3px 10px 43px 4px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: -3px 10px 43px 4px rgba(0, 0, 0, 0.59);
  box-shadow: -3px 10px 43px 4px rgba(0, 0, 0, 0.59);
}

.titulo {
  font-size: 3rem;
  margin-bottom: 20px;
}

.pisador {
  display: flex;
  justify-content: space-between;
  margin-inline: 30px;
  text-decoration: none;
}

.emogi,
.buscar,
.papelera {
  font-size: 1.5rem;
}

.papelera,
.botonCopy {
  cursor: pointer;
}

.parrafo {
  text-align: left;
  font-size: 1.1rem;
}

.texto {
  padding: 10px;
}

.header {
  height: 100px;
  background-color: #205375;
  padding: 5px;
}

.logo {
  padding-left: 10px;
  color: whitesmoke;
  font-size: 1.5rem;
}

.logo2 {
  color: #fad6a5;
  font-size: 2rem;
}

.logoGit {
  width: 100px;
  height: auto;
}

.footer {
  background-color: #205375;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text_footer {
  color: whitesmoke;
}

.codigo {
  background-color: #2e3840;
  font-size: 1.5rem;
  color: whitesmoke;
  padding: 10px;
  font-family: Monaco, Consolas, "Lucida Console", monospace;
}

select {
  padding: 8px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  background-color: #f2f2f2;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
  appearance: none;
  cursor: pointer;
}

select:focus {
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

select option {
  color: #333;
  background-color: #f2f2f2;
}

.resultado {
  background-color: #2e3840;
  color: whitesmoke;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* Por debajo de 700px y 400px*/
@media screen and (max-width: 700px), screen and (max-width: 400px) {
  .cajaCentral {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    max-height: 39rem;
    overflow-y: scroll;
  }
  select {
    padding: 4px 8px;
    width: 10rem;
    font-size: 0.9rem;
  }
  .parrafo,
  .codigo {
    font-size: 1rem;
  }
  .emogi,
  .buscar,
  .papelera {
    font-size: 1.5rem;
  }
  .login {
    padding: 9px;
  }
  .header{
    height: 150px;
  }
}
