body{
    height: 100vh;
    overflow: hidden;
    margin: 0;
    background-image: url("../src/background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
}

.country-list{
    width: auto;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 48px 64px;
}

.country-list>p{
    text-align: center;
    margin: 32px auto 24px;
}

.country-list ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.country-list a{
    display: flex;
    align-items: center;
    gap: 16px 16px;
    background-color: #eaeaea;
}

.country-list a, .country-list a:visited{
    color: #1C1C1B;
    text-decoration: none;
}

.country-list a:hover, .country-list a:active{
    background-color: #acacac;
}

.country-list li{
    margin-bottom: 16px;
}

.country-list li a img{
    margin-left: 32px;
}

.country-list li a p{
    padding-right: 32px;
}

.informations{
    width: 100%;
    height: 64px;
    position: absolute;
    bottom: 0;
    background-color: #1C1C1B;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.informations a, .informations a:visited{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.informations a:hover, .informations a:active{
    color: #ed5f71;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

@media (max-width: 501px) {
    .country-list{
        height: 100%;
        justify-content: center;
    }
}