@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body{
    font-family: "Roboto", sans-serif;
}

#header {
    font-weight: 700;
    font-size: 15px;
}
#header a{
    color: #000;
    transition: all 300ms ease-in-out;
}
#header a:hover{
    color: #16bae1;;
}
@media (min-width:992px){
    #header .navbar-brand{
        margin-right: 50px;
    }
}

#footer {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    background-color: #161616;
    color: #9b9b9b;
}
#footer-top {
    padding:20px;
}
#footer-bottom {
    padding:30px 0;
    border-top: 2px solid rgb(36, 36, 36);
}
#footer-bottom-content {
    padding:20px;
}
#footer-texto {
    margin-bottom: 10px;
}
#footer a{
    margin:0 10px;
    color: #fff;
    transition: all 300ms ease-in-out;
}
#footer a:hover{
    color: #ffbe2e;
}

.resaltado {
    color:#16bae1
}