.snake-map {
    width: 100%;
}

.map-bg {
    background-image: url('../images/map/map-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.map-info-container {
    padding: 10px 0 20px 0;
}

.container {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 30px;
    padding: 0 15px;
}

img.slogan {
    height: 100px;
    width: fit-content;
}

img.prize {
    height: 150px;
    width: fit-content;
}

.button-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin: 20px 0 0;
}

.button-container img {
    height: 100%;
    width: 100%;
}

button#playNow,
button#prize {
    border: 0;
    background: 0;
    padding: 0;
    width: auto;
    height: 100%;
    border-radius: 50px;
}

@media(max-width: 800px) {
    .map-info-container {
        padding: 100px 0;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 30px;
    }

    .map-bg {
        background-image: url('../images/map/map-bg-mob.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        height: 100%;
    }

    .button-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
