html{
    font-size: 62.5%;
    box-sizing: border-box;
}
*, *:before, *:after{
    box-sizing: inherit;
}

body{
    margin: 0;font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 16px; /*1rem = 10px*/
}

/*GLOBALES*/
img{
    max-width: 100%;
}
.margin-0{
    margin: 0;  
}
.padding-0{
    padding: 0;
}

.contenedor-header{
    height: 300px;
    background-image: url('../img/hero3.png');
    background-size: cover;
    background-position: center center;
    filter: brightness(.9);
    width: 100%;
    display: flex;
    justify-content: center;
}
.logo{
    height: 310px;
    /* margin-top: 10px; */
}

.navegacion-principal{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid rgb(177, 177, 177);
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 8px -2px rgba(0,0,0,0.85);
    -moz-box-shadow: 0px 3px 8px -2px rgba(0,0,0,0.85);
    box-shadow: 0px 3px 8px -2px rgba(0,0,0,0.85);
}
@media (min-width: 768px){
    .navegacion-principal{
        padding: 1rem;
        flex-direction: row;
        position: sticky;
    }
}
a{
    text-decoration: none;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(17, 17, 17, 0.267);
}
a:nth-last-child(){
    border-bottom: none;
}
@media (min-width: 768px){
    a{
        border-radius: 10px;
        border-bottom: none;
    }
}
.navegacion-principal a:focus{
    background-color: rgb(224, 224, 224);
    border-radius: 0;
}   
a p{
    margin: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: black;
    font-size: 1.9rem;
}


@media (min-width: 768px){
    .navegacion-principal a:hover{
        background-color: rgb(224, 224, 224);
        /* outline: 1px solid black; */
    }
} 

.titulo-inicial{
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titulo-inicial h1{
    margin: 0;
    font-size: 3.8rem;
    max-width: 90%;;
    
}
@media (min-width: 768px){
    .titulo-inicial h1{
        margin: 0;
        font-size: 5rem;
    }
}
.titulo-inicial h2{
    font-size: 5rem;
    color: #7e0000;
    margin-top: 2rem;
    max-width: 90%;
}
@media (min-width: 768px){
    .titulo-inicial h2{
        font-size: 7rem;
    }
}


.info-server{
    width: 100%;
    background-color: rgb(54, 54, 54);
}
.contenedor-info{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    color: #fff;
    align-items: center;
}
.contenedor-info .imagen{
    padding: 2rem 0 2rem 2rem;
}
.info p{
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
}
.ip span,
.version span{
    font-weight: 700;
}


@media (min-width: 768px){
    .contenedor-info{
        width: 100%;
        display:grid;
        grid-template-columns: repeat(2,1fr);
        align-items: center;
        column-gap: 1rem;
    }
    .info{
        padding: 1rem;
    }
    .info p{
        margin: 0;
    }
}
@media (min-width: 992px){
    .contenedor-info{
        width: 90%;
    }
    .info h1{
        font-size: 4rem;
    }
    .info p{
        font-size: 1.7rem;
    }
}
.footer{
    background-color: rgb(31, 30, 30);
    color: #fff;
    text-align: center;
}
.footer p{
    margin: 0;
    padding: 2rem 0;
    font-size: 2rem;
    font-weight: 400;
}
.redes{
    border-bottom: 1px solid rgb(224, 224, 224);
    width: 50%;
    margin: 0 auto;
    padding-bottom: 2rem;
}


.redes a{
    border-radius: 50%;
    width: 3rem;
}
.instagram{
    margin-right: 2rem;
}

.twitter{
    margin-left: 2rem;
}
.redes a:nth-last-child(){
    margin-right: 0;
}

.icono-chico{
    width: 3rem;
    margin: 0 auto;
}
.nav-footer a p{
    margin: 2rem 0;
    padding: .3rem;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
}
.nav-footer p:hover{
    color: rgb(116, 116, 116);
}  

@media (min-width: 768px){
    .redes{
        padding: 5rem 0 0 2rem;
        display: flex;
        align-items: center;
        border-bottom: none;
    }
    .redes p{
        margin-right: 2rem;
    }
    .footer-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 3rem;
    }
    
    .nav-footer{
        display: flex;
        padding-top: 2rem;
        column-gap: 2rem;
    }
    .nav-footer a p{
        margin: 0;
        padding: .3rem;
        font-size: 1.7rem;
        font-weight: 400;
        color: #fff;
    }
    .nav-footer p:hover{
        color: rgb(116, 116, 116);
    }  
}