:root{
    --preto: #292626;

    --azul: #030327;
    --amarelo: rgb(255, 238, 0);
    --roxo: rgba(61, 9, 61, 0.904);
    
}

*{
    margin: 0px;
    padding: 0;
    box-sizing: border-box;
}

/*elementos base*/
body{
    background: var(--azul);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}

header .container{
    font-family: 'Supermercado One', cursive;
    font-size: 45px;
    background-color: var(--preto);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
header .logo{
    margin-top: 20px;
    margin-left: 20px;
}

.logo img{
    width: 80%;
}

header nav a{
    text-decoration: none;
    color: white;
    margin-right: 10px;
    transition: .3s ease all;
}

header div a:hover{
    color: #5a5a5a;
}

.banner img{
    text-align: center;
    margin-top: 130px;
    height: 15rem;
}

div{
    text-align: center;
}

.desc-ban{

    font-size: 25px;
    font-family: 'Bebas Neue', cursive;
}

.freq{
    margin-top: 30px;
}

.boto{
    margin-top: 30px;
}

.yo{
    color: white;
    text-decoration: none;
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;

    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 30px;
}
.ins{
    color: white;
    text-decoration: none;
    border: none;
    margin-left: 30px;
    background-color: Transparent;
    background-repeat:no-repeat;

    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 30px;
}

.spo{
    color: white;
    text-decoration: none;
    border: none;
    margin-left: 30px;
    background-color: Transparent;
    background-repeat:no-repeat;

    font-size: 30px;
    font-family: 'Open Sans Condensed', sans-serif;

}

.yo:hover{
    color: red;
    cursor: pointer;

    transition: transform .5s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);  
    transform: scale(1.1);
}

.ins:hover{
    color: hotpink;
    cursor: pointer;

    transition: transform .5s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);  
    transform: scale(1.1);
}

.spo:hover{
    color: rgb(10, 105, 10);
    cursor: pointer;

    transition: transform .5s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);  
    transform: scale(1.1);
}

.button:hover{     
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;
}

.musicas{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 30px;

    margin-inline-start: 20px;
    margin-inline-end: 20px;
}

.music-desc{

    font-size: 25px;
    font-family: 'Bebas Neue', cursive;
}

.music{

    font-size: 40px;
    font-family: 'Bebas Neue', cursive;
}

.musi{
    background-color: var(--preto);
    margin-top: 30px;
}

.feats{
    background-color: var(--roxo);
}