* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

body {
  margin-top: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.country_container {
  width: 400px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  background-color: #f2f2f2;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.country_flag {
  width: 200px;
  border-radius: 5px;
  height: auto;
}

#countries_search {
  padding: 14px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-family: "Poppins", sans-serif;
  width: 290px;
}

#btn_search {
  margin: 10px;
  padding: 14px 15px;
  border: none;
  background-color: green;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#btn_search:hover {
  margin: 10px;
  padding: 14px 15px;
  border: none;
  background-color: rgb(5, 116, 5);
  color: rgb(223, 223, 223);
  border-radius: 6px;
  cursor: pointer;
}

h3 {
  font-weight: bold;
}
