* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* .lightTheme {
  background-color: lightgray;
} */

a {
  text-decoration: none;
  color: black;
}

.header-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  border: 2px solid lightgray;
  box-shadow: 0px 4px 4px 4px lightgray;
  margin-top: 2px;
}

.header-right {
  display: flex;
  gap: 10px;
}

.header-right i {
  cursor: pointer;
}

.countrySection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 50px;
}

.card {
  width: 300px;
  height: 350px;
  border: 2px solid lightgray;
  border-radius: 10px;
}

.card-header {
  padding: 10px;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
}

.flagImage {
  width: 100%;
}

.searchBox {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  width: 1200px;
  margin: 30px;
}

input,
select {
  width: 300px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid lightgray;
}