.modal-header {
  border-bottom: 0;
  background-color: var(--header-bg-clr);
}

.modal-body {
  background-color: #303030;
  color: white;
}

.parent {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  height: 100%;
  text-align: center;
}

#country-code {
  grid-area: 1 / 1 / 2 / 2;
}

#capital-city {
  grid-area: 1 / 2 / 2 / 3;
}

#un-member {
  grid-area: 2 / 1 / 3 / 2;
}

#language {
  grid-area: 2 / 2 / 3 / 3;
}

#coat-of-arms {
  grid-area: 1 / 3 / 3 / 5;
}

#bottom-row {
  grid-area: 3 / 1 / 4 / 5;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#coat-of-arms-img {
  width: 100%;
}

.country-info {
  color: rgb(105, 105, 105);
}