

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: hsl(0,0%, 98%);
    --font-color: hsl(200,15%, 8%);
    font-family: 'Nunito sans', sans-serif;
}

body {
    background-color:white ;
    color: black;
}

.container:nth-child(1) {
    box-shadow: 0 0 5px rgba(0,0,0,0.4 );
    

}

.container {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    align-items: center;
}

button {

    border: none;
    outline:none;
    background: none;

}



.controls{
    display: flex;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    padding: 18px 20px;
    border-radius: 5px;
}

.controls input {
outline: none;
border: none;
width: 300px;
background: none;
}


.dropdownMenu {
    width: 200px;
    cursor: pointer;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    padding: 18px 20px;
    border-radius: 5px;
}

.drop-options {
    display: none;
    position: absolute;
    width: 200px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    background-color: var(--bg-color);
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 5px;
}
 
.drop-options p {
    margin: 5px 0;
}

.show-options {
    display: block;
}

.countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: center;
    padding: 30px;
}

.country {
    width: 250px;
    min-height: 250px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    margin-bottom:3rem;
    
}

.country-img {

    width: 250px;
}

.country-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-details{
    justify-content: center;
    padding: 20px 25px ;

}


.country-details h5 {
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow:  rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.country-details h5{
    font-size: 20px;
    margin-right: 5px;
}

.country-details strong {
    margin-right: 5px;
}


.head{
    color: green;
}

.icon{
 
    height: 50px;
    width: 50px;

}

