html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: auto;
    width: 60%;
    min-height: 700px;
    margin-top: 10px;
    padding: 10px;
}

.title {
    font-size: 25px;
    text-align: center;
    font-weight: bold;
}

.country {
    border: none;
    border-bottom: solid 1px #043f62;
    width: 97%;
    height: 58px;
    margin: auto;
    box-shadow: 0px 0px 10px 0px gray;
    background-color: #f2f2f2;
    align-items: center;
    display: flex;
}

.Flags {
    width: 35px;
    margin: 9px;
}

.country-name {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    text-decoration: none;
}

@media only screen and (max-width: 750px) {
    .inner {
        flex-direction: column;
    }
    .center-box {
        width: 80%;
    }
    .Flags {
        width: auto;
        margin: 0 auto;
        max-width: 100%;
    }
    .country {
        height: auto;
        flex-direction: column;
        padding: 10px;
        align-items: flex-start;
    }
}