:root {
    --red: #E73206;
    --blue: #3399FF;
    --turquoise:#99CCCC;
    --blue-cristal: #EFF5FD;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #808080;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

a:visited, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: var(--white);
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, body, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: "ballinger", sans-serif;
    font-style: normal;

}

body{
    font-family: Arial, sans-serif;
    background-color:var(--red, #FB401F);
    display: flex;
    flex-direction: column;
}

#sticker{
    position: absolute;
    top: 10vw;
    right: 10vw;
    width: 150px;
    height: 150px;
    background-image: url(img/star.svg);
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(15deg);
}

#sticker h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: var(--blue);

}

section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100svh - 110px);
}

section div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

h1{
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    text-align: center;
}

#main-title img{
    width: 80vw;
    max-width: 1080px;
    height: auto;
}

footer{
    color: var(--white);
    margin-bottom: 0;
    display: flex;
    height: 110px;
    padding: 24px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-shrink: 0;
    align-self: stretch;
    font-size: 1.1rem;
    font-weight: 400;
}

footer ul,
footer .separator{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 64px;
}

footer ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.separator {
    width: 1px;
    height: 24px;
    border-bottom: 0px solid white;
    border-left: 1px solid white;

}

#footer-links img{
    height: 20px;
    width: auto;

}

#sponsors img{
    height: 30px;
    width: auto;

}

#image-bottom{
    z-index: -1;
    position: absolute;
    bottom: 0;
    width: 100svw;
    height: 100svh;
    background-image: url(img/footer_bg_2.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100svw;

}


@media (max-width: 576px) {
    #main-title img{
        width: 90vw;
    }

    #main-title h1{
        font-size: 1rem;

    }

    footer{
        padding: 24px;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
        height: 110px;
        font-size: 1rem;

    }

    footer ul,
    footer .separator{
        gap: 24px;
}
    #footer-links{
        width: 100%;
        justify-content: space-between;
    }
    .separator {
        width: 100%;
        height: 1px;
        border-bottom: 1px solid white;
        border-left: 0px solid white;
    }
      #image-bottom{
        background-size: 200svw;
    }
}

@media (min-width: 577px) and (max-width: 1024px) {
    #image-bottom{
        background-size: 150svw;
    }

}
