@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');
body, ul, li{
    padding: 0px;
    margin: 0px;
    list-style: none;
    font-size: 1.2rem;
    font-family: Tilt Neon;
}

#cabecalho a {
    text-decoration: none;
    color: white;
}

#cabecalho{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: #1d1e20;
}

.menu{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: auto;
}

.menu li{
    margin-left: 15px;
}

.menu li a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: white;
}


.container-fluid{
    height: auto;
    margin-top: 5%;
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

img{
    max-width: 100%;
}

.desc{
    margin-top: 2rem;
}

.col-md-3{
    display: block;
    align-items: center;
    font-size: 1em;

}
.row > .col-md-3{
    align-self: flex-start;
}

.preferencias{
    margin-top: 2rem;
}

.btn{
    background-color: #1d1e20;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn:hover {

    background-color:  #2f2f31;
    border-color: #1d1e20;
    transition: 0.5s;
    /*opacity: 0.9;*/

}




@media (max-width: 575.98px) { 
    #container{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .menu{
        display: flex;
        height: auto;
        flex-direction: column;
    }
    .menu > li{
        margin-top: 3px;
        margin-bottom: 3px;
        align-content: stretch;
        color: #fff;
        background-color: #007bff;
        border-color: #007bff;
    }

    .menu > li:hover{
        color: #fff;
        background-color: #093666;
        border-color: #007bff;
    }

    #cabecalho > #logo{
        text-decoration: none;
        color: white;
        font-size: 45px;
        text-align: center;
    }
  
}
