* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

body{
    padding-top: 100px;
    font-family: "Mulish", sans-serif;
    background-color: #262626;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px;
}

button{
    font-weight: 800;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.025);
    }
    100% {
        transform: scale(1);
    }
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: #e60000;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 3rem;
    z-index: 1000;
    .button-section
    {
        padding: .25rem;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        button
        {
            font-family: "Mulish", sans-serif;
            padding: 0.75rem 1.5rem;
            border-radius: .75rem;
            border: none;
            font-size: 1.1rem;
        }
    }
}

.bonus-banner{
    width: 100vw;
    background-color: #e60000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
}

.bonus-banner-content{
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 3rem;
    align-items: center;
    button{
        font-family: "Mulish", sans-serif;
        padding: 0.75rem 1.5rem;
        border-radius: .75rem;
        border: none;
        font-size: 1.1rem;
    }
    .left-side-content{
        color: white;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.info-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    width: 50vw;
    text-align: center;
    margin: 1rem;
    gap: 1rem;
    align-items: center;

    h2{
        font-size: 1.85rem;
    }

    img{
        width: 100%;
        border-radius: 2rem;
    }

    ol{
        list-style-position: inside;
    }

    p, li{
        font-size: 1.1rem;
    }

    h1{
    }

    .button-section
    {
        padding: .25rem;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        button
        {
            font-family: "Mulish", sans-serif;
            padding: 0.75rem 1.5rem;
            border-radius: .75rem;
            border: none;
            font-size: 1.1rem;
        }
    }

    a{
        color: white;
    }

    table{
        border-collapse: collapse;
        border: 1px solid black;
        th, td {
            padding: 0.75rem 1rem;
            border: 1px solid #555;
            text-align: center;
            font-size: 1.25rem;
        }
    }

    &:first-of-type{
        margin-top: 4rem;
    }
}

.last-section{
    margin-bottom: 5rem;
}

footer{
    border-top: rgba(255, 255, 255, 0.5) dashed 1px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    color: white;
    gap: .5rem;
    font-size: 1.25rem;
    img{
        width: 15%;
    }
}

.footer-links{
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    a{
        text-decoration: none;
        color: white;
        opacity: 0.8;
        &:hover{
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    body{
        padding-top: 100px;
        padding-bottom: 150px;
    }

    .info-section{
        width: 90vw;
        .button-section
        {
            width: 100%;
            flex-direction: column;
            gap: 0.5rem;
        }
    }

    header{
        padding: 0.5rem;
        flex-direction: column;
    }

    .button-section{
        flex-direction: row;
    }

    .bonus-banner{
        button{
            font-size: 1rem;
        }
    }

    .bonus-banner-content{
        width: 90vw;
        flex-direction: column;
        gap:.5rem;
        align-items: center;
    }

    footer{
        img{
            width: 50%;
        }
    }
}