
    body{
        margin: 0;
        padding: 0;
    }
    
    .container{  
        padding: 10px;
        height: 100%;
        margin: 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position:center center;
    }
    
    #alogo{
        padding: 5px 30px 5px 30px;
        width: 8em;
        height: auto;
        margin-top: auto;
        margin-bottom: auto;
    }

    header{
        z-index: 2;
        position: sticky;
        top: 0px;
        background-color: rgba(3, 3, 3, 0.9);
        height:10vh;
        box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: row;
    }
    
    header .logo{   
        width: 12em;
        height: auto;
    }
   
    header .seccion{
        display: flex;
        color: white;
        font-family: 'Roboto', sans-serif;
        justify-content: center;
        text-align: center;
    }

    header #txt-seccion{
        margin-top: auto;
        margin-bottom: auto;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 18px;
        font-weight: bold;
    }
    
    header .containerh{
        display:flex;
        background-color: rgba(10, 10, 10, 0.7); 
        height: 100%;
        width: 100%;
        max-width:none;
        backdrop-filter: blur(10px);
        flex-direction: row;
        justify-content: space-between;
    }
    
    header nav{
        display: flex;
        flex-direction:row;
        padding: 0px 30px;
        align-items: center;
    }

    .container{
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        height:auto;
        background-image: linear-gradient(0deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url("media/background3.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    
    #info-container{
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3%;
        margin-bottom: 3%;
        width: 85%;
        height: auto;
       background-color: rgba(41, 41, 41, 0.5);
    }

    #txt-container{
        padding-top: 4%;
        padding-bottom: 4%;
        padding-left: 12%;
        padding-right: 12%;
    }

    h1{
        font-family: 'Roboto', sans-serif;
        color:white;
        font-size: 26px;
        font-weight: bold;
    }

    h2{
        font-family: 'Roboto', sans-serif;
        color:white;
        font-size: 24px;
        font-weight: bold;
    }

   

    p{
        font-family: 'Roboto', sans-serif;
        color:rgb(212, 212, 212);
        font-size: 18px;
    }

    a{
        color: white;
    }

/*
=======================================================================================================================
    FOOTER
=======================================================================================================================
*/


footer{
    background-color: rgb(30,30,30);
}

footer #copy{
    margin: 6px;
    
}

footer p{
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    color:rgb(180, 180, 180);
    padding: 0px;
    width: fit-content;
    font-size: 20px;
}

footer #container{
    background-image: none;
    background-color: rgb(30,30,30);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items:unset;
    width: auto;
}

footer #rows{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: fit-content;
    margin-right: 13%;
    margin-left: 13%;
}

footer .row{
    width: 30%;
    display: flex;
    flex-direction: column;

}

footer .row-tittle{
    padding: 10px;
    padding-left: 0;
    color: rgb(179, 28, 28);
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    width: auto;
}

footer .item{
    color: rgb(180, 180, 180);
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

@media (max-width:900px){
    footer #rows{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        height: fit-content;
        margin-right: 13%;
        margin-left: 13%;
    }

    footer .row{
        margin: auto;
        width: 90%;
    }
}