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

main{
  height: 100vh;
  display: grid;
  place-content: center;
}

.country{
  width: 400px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 10px #bbb;
}

.country__input {
  width: 100%;
  padding-bottom: 8px;
  border: none;
  border-bottom: 4px solid #F7DF1E;
  outline: none;
  font-size: 16px;
}

.country__flag {
  width: 100%;
}

.country__name {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

.country__capital {
  font-size: 24px;
  font-weight: 200;
  color:#999;
}