*{
    margin: 0;
    padding: 0;
}

#inicio{
     background: linear-gradient(rgba(0, 0, 0, 0.914), rgba(230, 4, 211, 0.399)), 
              url("img/fundo.jpg");
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

#inicio img{
    height: 220px;
    display: block;
    margin: auto;
}

#inicio h1{
    text-align: center;
    color: white;
    font-family: "BBH Sans Bogle", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
}

#inicio h2{
    color: white;
    font: normal 18pt arial;
    text-align: center;
}

#inicio a {
    text-decoration: none;
    color: rgba(254, 254, 254, 0.948);
    background-color: rgba(14, 228, 2, 0.941);
    font-family: "BBH Sans Bogle", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: max-content;
    display: block;
    font-size: 30px;
    padding: 9px 18px;
    border-radius: 10px;
    position: fixed;
    bottom: 15px;
    right: 35px;
    cursor: pointer;
    transition: transform 0.3s ease;

    /* animação */
    animation: animacao-botao 1.5s ease-in-out infinite;
}

@keyframes animacao-botao {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}



#inicio #videos{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 50px 0;
    gap: 15px;
}

#inicio #videos iframe{ 
    margin-bottom: 40px;
    background-color: rgb(207, 1, 179);
    padding: 5px;
    border-radius: 20px;
    box-shadow: 4px 5px 130px pink;
}

@media(max-width:600px){
    #inicio a {
        font-size: 22px;
    }
}