main {
    background-image: url('../img/bg.png');
    background-position: bottom center;
    background-repeat: no-repeat;
}

main .logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .logo img {
    width: 400px;
    max-width: 50vw;
    flex-shrink: 0;
}

main .logo::before {
    content: '';
    background-image: url('../img/pleft.png');
    background-repeat: repeat-x;
    background-position: right center;
    flex: 1;
    min-height: 200px;
}

main .logo::after {
    content: '';
    background-image: url('../img/pright.png');
    background-repeat: repeat-x;
    background-position: left center;
    flex: 1;
    min-height: 200px;
}

main a.button {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    /* border-radius: 5px; */
    font-weight: 700;
}

main a.button.red {
    margin: 20px 0 10px 0;
    padding: 13px 40px 12px 40px;
    background-color: var(--red);
    color: var(--body);
    transition: background-color .3s, color .3s;
}

main a.button.red:hover {
    background-color: var(--text);
    color: var(--white);
}

main .home {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 50px;
}

main .home .info {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 819.999px) {
    main .prizes div {
        margin-bottom: 60px;
    }
    main .logo img {
        width: 200px;
        max-width: 50vw;
        flex-shrink: 0;
    }

    main .logo::before,
    main .logo::after {
        background-size: auto 120px;
    }
}

/* Tablet & Desktop */
@media (min-width: 640px) {
    main .prizes {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    main .prizes div {
        flex: 1;
    }
}

@media (min-width: 640px) and (max-width: 1119.999px) {
    main .prizes {
        flex-wrap: wrap;
    }

    main .prizes div {
        min-width: 45%;
    }
}