@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
body{
    font-family: 'poopins', sans-serif;
    background-color: #0f0f0f;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.header{
    background-image: url(imagenes/bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.menu{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background-color: #040404;
    border-bottom: 1px solid #FFFFFF29;
}
.logo{
    color: #A70A15;
    font-size: 25px;
    font-weight: 800;
}
.menu .navbar ul li{
    position: relative;
    float: left;
}
.menu .navbar ul li a{
    font-size: 18px;
    padding: 20px;
    color: #FFFFFF;
    display: block;
}
.menu .navbar ul li a:hover{
    color: #E11680;
}
#menu{
    display: none;
}
.menu-icono{
    width: 25px;
}
.menu label{
    display: none;
    cursor: pointer;
}
.header-info h1{
    color: #E11680;
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 800;
    margin-bottom: 10px;
}
.header-info p{
    color: aliceblue;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 35px;
}
.btn-1{
    display: inline-block;
    padding: 10px 35px;
    border-radius: 10px;
    background-color: #A70A15;
    font-size: 20px;
    color: azure;
    text-transform: uppercase;
}
.btn-1:hover{
    background-color: #E11680;
}
.gym{
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.gym-1{
    width: 50%;
    padding-right: 150px;
}
.gym-1 h2{
    font-size: 40px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 35px;
}
.gym-1 p{
    font-size: 16px;
    color: #818181;
    margin-bottom: 35px;
}
.gym span{
    color: #A70A15;
}
.btn-2{
    display: inline-block;
    padding: 8px 45px;
    border-radius: 20px;
    background-color: #E11680;
    font-size: 18px;
    color: #FFFFFF;
    text-transform: uppercase;
}
.btn-2:hover{
    background-color: #A70A15;
}
.img-1, .img-2{
    width: 250px;
    margin-right: 20PX;
}
.footer{
    border-top: 1px solid #818181;
    padding: 10px 0 0;
    display: flex;
    justify-content: space-between;
    background-color: #040404;
}
.footer h3{
    color: #A70A15;
    font-size: 25px;
    font-weight: 800;
}
.links ul{
    display: flex;
}
.links ul li{
    margin-right: 35px;
}
.links ul li a{
    color: #818181;
}


    



