@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid black; */
    /* background-color: beige; */
}

.container {
    width: 400px;
    background-color: #f8f9fa;
    box-sizing: border-box;
    box-shadow: 2px 1px 3px 1px #a2a3a4;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
}

.container .head {
    width: 80%;
    height: 40px;
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content:center;
    align-items: center;
    background-color: #ffffff;
    /* border: 1px solid black; */
}

.container .head input {
    /* width: 100%; */
    font-size: 1.2rem;
    padding-left: 5px;
    background: transparent;
    outline: none;
    border: 1px solid transparent;
    
}

.container .head button {
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    outline: none;
    border-radius: 50px;
    border: 1px solid transparent;
    transition-property: background-color;
    transition-duration: 0.5s;
    cursor: pointer;
}

.container .head button:hover {
    background-color: #f2f6f9;
    border: none;
}

.content {
    width: 80%;
    height: auto;
    margin: 10px;
    padding: 5px;
    font-family: 'IBM Plex Sans', sans-serif;
    /* border: 1px solid red; */
}

.content-header {
    padding: 5px;
    margin: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    /* border: 1px solid red; */
}

.content img {
    width: auto;
    height: 100px; 
    /* margin: auto; */
    border: 1px solid transparent;
    
}

.content .country-name {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}
