img{
    width: 500px;
}
body{
    background-image: url('/images/fondo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility:visible;
    font-family: Arial, sans-serif; /* Cambia la fuente para todo el cuerpo de la página */
}
.banner{
    min-height: 700px;
    display: block;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    overflow:inherit;
}
.logo_container{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 350px;
    align-items: center;
    overflow: hidden; /* Para ocultar cualquier desbordamiento */
    border-radius: 50%;
    @media(max-width:450px){
        width: 70%;
      }
}
.logo{
    border-radius: 50%;
    object-fit: contain;
    
}
h3{
    color: black;
}
.boton{
    padding: .3rem;
    display: flex;
    font-size: 20px;
    justify-content: space-around;
    text-align: center;
    background-color: #f7f7f7;
    width: 50%;
    min-width: 300px;
    border-radius: 50px;
    transition: 0.7s;
    cursor: pointer;
    margin: 20px auto;
    @media(max-width:450px){
        width: 70%;
      }
}
.boton:hover{
    border-radius: 50px;
    transform: scale(1.03)
  }
  img{
    width: 100%;
    object-fit:contain;
    
  }
.flecha{
    width: 20px;
}
