@font-face {
    font-family: 'Regular';
    src: url('./Montserrat-Regular.otf');
}

@font-face {
    font-family: 'Light';
    src: url('./Montserrat-Light.otf');
}

body, div, p, span, ul, li, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Regular';
}

a {
    text-decoration: none;
}

ul, li {
    list-style: none;
}

html, body {
    width: 100%;
    background-color: rgba(20, 60, 218, 1);
    overflow-y: auto;
}

.icon_home_bottom {
    width: 100vw;
    position: fixed;
    bottom: 0;
    left: 0;
}

.title_box {
    width: 100%;
    margin-top: calc(7vh - 10px);
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.amount {
    color: rgba(20, 255, 0, 1);
}

.who_is {
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    line-height: 24.38px;
    text-align: center;
    color: #fff;
    font-family: 'Light';
}

.icon_champions_league_box {
    width: 100%;
    text-align: center;
    margin-top: 3vh;
}

.icon_champions_league {
    width: 50vw;
    margin: 0 auto;
}

.will_they {
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    line-height: 30.48px;
    text-align: center;
    color: #fff;
}

.icon_country_box {
    width: 100%;
    text-align: center;
}

.icon_country {
    width: 55vw;
    margin-top: 1vh;
}

.guess_box {
    width: 146px;
    height: 57px;
    border-radius: 10px;
    border: 2px solid rgba(63, 63, 63, 1);
    opacity: 0px;
    background: linear-gradient(98.18deg, #FFFFFF -1.65%, #C6C6C6 103.2%);
    border: 2px solid rgba(63, 63, 63, 1);
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.5);
    font-size: 28px;
    font-weight: 800;
    line-height: 57px;
    text-align: center;
    color: rgba(249, 32, 32, 1);
    margin: 0 auto;
    margin-top: 2vh;
    margin-bottom: 100px;
}


@keyframes scale_small_big {
    0% {
        -moz-transform: scale(0.95);
        transform: scale(0.95);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.scale_small_big {
    animation: scale_small_big 1s infinite alternate;
}

.country_item {
    width: 60px;
    z-index: 10;
}

@keyframes open_box {
    from {
        /* width: 60px;
        height: 60px; */
        -moz-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        /* width: 70px;
        height: 70px; */
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

#country_content_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animate_country_box {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.country_box {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: open_box 1s infinite alternate;
    position: absolute;
    top: 2.5px;
    left: 2.5px;
}

@keyframes open_box_one {
    from {
        /* width: 60px;
        height: 60px; */
        -moz-transform: scale(0.95);
        transform: scale(0.95);
    }

    to {
        /* width: 63px;
        height: 63px; */
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.country_box_one {
    width: 63px;
    height: 63px;
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    animation: open_box_one 1s infinite alternate;

}