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

body {
  /* background-color: bisque; */
  width: 100%;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN CONTAINER STYLING */
.mainContainer {
  /* background-color: rgb(224, 90, 90); */
  width: 987px;

  margin: auto;
  margin-top: 20px;
  padding: 13px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 20px;
}

/* SEARCH COUNTRY BOX */
.searchCountry {
  /* background-color: rgb(211, 218, 211); */
  width: 360px;
  height: 40px;
  border-radius: 8px;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;

  margin-bottom: 10px;
  padding: 2px 4px;

  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.searchlabel {
  /* background-color: aqua; */
  width: 45%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchField {
  /* background-color: aqua; */
  width: 54%;
}
.searchField input {
  width: 100%;
  height: 35px;
  padding: 2px 10px;
  font-size: 16px;

  border-radius: 5px;
}

/* Main Country Details Box */
.country {
  background-color: rgb(234, 228, 234);
  width: 400px;
  margin-bottom: 25px;
  padding: 10px 10px 0px;

  border-radius: 10px;

  display: flex;
  justify-content: space-evenly;

  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;

  display: none;
}

.mainDetailsBox {
  /* background-color: pink; */
  width: 100%;
  margin-bottom: 20px;
}

/* FLAG BOX */
.flagBox {
  /* background-color: rgb(195, 81, 195); */
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 10px;
}

.flagBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  /* border-radius: 50%; */
}

/* Description BOX */
.mainDescriptionBox {
  /* background-color: aqua; */
  width: 100%;

  padding: 14px 5px;
}

.detail {
  /* background-color: antiquewhite; */
  height: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.detail .heading {
  /* background-color: blueviolet; */
  margin: auto;
}

.label,
.result {
  /* background-color: lightcoral; */
  width: 50%;
  height: 100%;

  padding: 0px 8px;

  display: flex;
  align-items: center;
}

.result {
  width: 40%;
}

/* SUBMIT BUTTON */
.submitContainer {
  /* background-color: black; */
  width: 40%;
  display: flex;
  justify-content: center;
}

.submitContainer .submit {
  font-size: 20px;
  width: 170px;
  height: 35px;
  border-radius: 7px;
}

/* MEDIA QUERY */
/* @media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
} */
