*, *::before, *::after {
    padding: 0;
    margin: 0;
}

html {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body{
    background-color: #1429a0;
}

main {
    cursor: pointer;
    width: 100%;
    height: 100%;
}

main .desktop-banner, main .tablet-banner, main .mobile-banner {
    width: 100%;
    height: 100%;
}

.tablet-banner, .mobile-banner {
display: none;
}


/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 2;
} */

.winner-lists {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 500px;
    overflow: scroll;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 3;
}

.close {
    text-align: right;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .desktop-banner {
        display: none;
    }

    .tablet-banner {
        display: block;
    }
}


@media screen and (max-width: 767px) {
    .mobile-banner {
        display: block;
    }

    .tablet-banner {
        display: none;
    }
}