@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    user-select: none;
}

html{
    background: #0917c0;
}


body {
    
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
    accent-color: #FFEC00;
}

body h1,
body h2,
body h3,
body h4 {
    font-family: "Poppins", serif;
    line-height: 1;
    color: #fff;
}

.container {
    max-width: 960px;
    margin: 0 auto
}

.flex {
    clear: both;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly
}

.center {
    justify-content: center
}

.between {
    justify-content: space-between
}

.gap {
    gap: 30px;
}

.wrap {
    flex-wrap: wrap;
}

main{
    text-align: center;
    padding: 50px 0 0;
}

#logokabum{
    margin-bottom: 30px;
}

h1{
    font-size: 2.4rem;
}

hr{
    margin: 50px auto;
    border: solid 1px #5B68FF;
}

main div:has(img){
    margin-bottom: 50px;
}

main a.cta{
    background: #00EE65;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #000CB6;
    padding: 15px 30px;
    border-radius: 30px;
    width: fit-content;
    gap: 15px;
    filter: drop-shadow(-5px 5px 0 #fff);
    border: solid 1px #fff;
    transition: all 0.2s;
}

main a.cta:hover{
    color: #000CB6;
     filter: drop-shadow(-12px 12px 0 #fff);
     translate: 3px -3px;
}

#regulamento{
    padding: 50px 0;
    text-align: center;
}

#regulamento .container{
    border: solid 1px #5B68FF;
    border-radius: 30px;
    padding: 30px;
    text-align: left;

}

#regulamento h2{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#regulamento a{
    color: #fff;
    font-weight: 600;
}

#regulamento a:hover{
    text-decoration: underline;
}

#regulamento h3{
    font-weight: 600;
    margin-bottom: 10px;
}

#regulamento p{
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#ninja{
    max-width: 1920px;
    margin: 0 auto;
}



@media screen and (max-width: 1390px) {
    .container {
        margin: 0 30px
    }
}

@media screen and (max-width: 1390px) {

    h1{
        font-size: 1.6rem;
    }

    #regulamento p{
        font-size: 0.9rem;
    }

    br{
        display: none;
    }
}