@font-face {
    font-family: 'CaviarDreams';
    src: url(/Fuentes/caviar_dreams/CaviarDreams.ttf);
}
*{
    margin: 0;
    padding: 0;
    list-style: none;
}
html, body{
  height: 100%;
}
body{
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:    "Header"
                          "Main"
                          "Footer";
  box-sizing: border-box;
  font-family: CaviarDreams;
}
header{
  grid-area: Header;
  height: 220px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  min-height: 300px;
  font-weight: bold;
  background-color: #e4f4fd;
}
header img{
  position: absolute;
  top: 5%;
  height: 17%;
  animation-name: Entrada-img;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
header img:hover{
  cursor: pointer;
}
.Titulo{
  position: absolute;
  left: 13%;
  color: black;
  font-size: 25px;
  animation-name: Entrada-Titulo;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.Titulo2{
  position: absolute;
  left: 13%;
  color: black;
  font-size: 25px;
  animation-name: Entrada-Titulo2;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
#Listado{
  text-align: center;
  position: absolute;
  width: 24%;
  top: 25%;
  animation-name: Entrada-Lista;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  font-size: 20px;
}
#Listado ul{
  list-style-type: none;
  display: flex;
}
.Header-Botones{
  text-decoration: none;
  color: black;
  padding: 10px;
  border-radius: 20px;
}
.Header-Botones:hover{
  transition-duration: 0.5s;
  font-size: 22px;
  background-color: #9edbff;
}
#BotonFormulario{
  position: absolute;
  top: 95px;
  left: 77%;
  width: 8%;
  height: 8%;
  text-align: center;
  border-radius: 20px;
  border: none;
  font-size: 16px;
  animation-name: INICIARSESION;
  animation-duration: 1s;
  cursor: pointer;
  background-color: #9edbff;
}
#BotonFormulario:hover{
  background-color: #95d3f7;
}
#BarraBusqueda{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -20px;
  right: 500px;
  animation-name: Barra;
  animation-duration: 1s;
}
#InputBarra{
  width: 70%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 35px;
}
#BotonBarra{
  padding: 18px 20px;
  margin-left: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
#BotonBarra:hover {
  background-color: #0056b3;
}

h1{
  color: aliceblue;
  border: solid;
  text-align: center;
  margin-left: 40%;
  margin-right: 40%;
}
h3{
  color: white;
  float: left;
}

main{
  margin-top: 0;
  margin-bottom: 0;
  background-image: linear-gradient(180deg, #e4f4fd, #95d3f7);
}

.acordeon{
  text-align: center;
  background-color:  rgb(255, 255, 255);
  box-shadow: 0 0 4px rgb(151, 151, 151);
  border-collapse: collapse;
  margin-left: 25%;
  margin-right: 25%;
  margin-bottom: 0.8%;
  padding: 0.4%;
  transition: 0.4s ease;
  touch-action: manipulation;
  border-radius: 5px;
}
.acordeon:hover{
  background-color: #95d3f7;
  color: rgb(27, 27, 27);
  transform: scale(1.1)
}
summary {
  list-style: inside;
  list-style-type: square;
}
#BotonSoporte{
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  padding: 10px;
  margin-left: 45%;
  margin-right: 45%;
}
#BotonSoporte:hover{
  background-color: #0056b3;
}
#Bienvenida{
  color: #272727;
  margin-left: 15%;
  margin-right: 15%;
}
#final-soporte{
  text-align: center;
}
footer{
    grid-area: Footer;
    display: flex;
    justify-content: center;
    font-weight: bold;
    background-color: #95d3f7;
}

footer div{
    margin: 3%;
    color: black;
    font-size: 20px;
}
footer div a{
    text-decoration: none;
    color: black;
}
footer div a:hover{
    color: grey;
}   
@keyframes Entrada-img {
    0%{
        left: -300px;
    }
    100%{
        left: 4%;
    }
}
@keyframes Entrada-Titulo {
    0%{
        top: -300px;
    }
    100%{
        top: 11%;
    }
}
@keyframes Entrada-Titulo2 {
    0%{
        top: -30px;
    }
    100%{
        top: 15%;
    }
}
@keyframes Entrada-Lista {
    0%{
        left: -300px;
    }
    100%{
        left: 4%;
    }
}
@keyframes INICIARSESION {
    0%{
        top: -300px;
    }
    100%{
        top: 95px;
        left: 77%;
    }
}
@keyframes Barra {
    0%{
        top: -300px;
    }
    100%{
        top: -20px;
    }
}
@media (max-width: 600px) {
  header img{
      position: absolute;
      top: 9%;
      width: 20%;
      height: auto;
  }
  .Titulo, .Titulo2{
      position: absolute;
      left: 26%;
  }
  #Listado{
      position: absolute;
      top: 22%;
  }
  #BotonFormulario{
      position: absolute;
      margin-top: 2%;
      width: 20%;
  }
  #BarraBusqueda{
      position: relative;
      right: 100%;
      top: -100px;
      width: 200%;
  }
  @keyframes Barra {
      0%{
          top: -300px;
      }
      100%{
          right: 100%;
          top: -100px;
      }
  }

}
@media (min-width: 600px) and (max-width: 1000px) {
  header img{
      position: absolute;
      top: 9%;
      width: 20%;
      height: auto;
  }
  .Titulo, .Titulo2{
      position: absolute;
      left: 26%;
  }
  #Listado{
      position: absolute;
      top: 28%;
  }
  #BotonFormulario{
      position: absolute;
      margin-top: 2%;
      width: 20%;
  }
  #BarraBusqueda{
      position: relative;
      right: 100%;
      top: -100px;
      width: 200%;
  }
  @keyframes Barra {
      0%{
          top: -300px;
      }
      100%{
          right: 100%;
          top: -100px;
      }
  }
}