body {
  display: flex;
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  font-family: Arial, Roboto, 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #eee;
  margin: 0;
}

.container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1rem #ddd;
  width: 100%;
  max-width: 20rem;
  border-radius: .25rem;
  gap: 2rem;
  padding: 1rem;
}

.container img {
  max-width: 100%;
  max-height: 3rem;
}

a {
  color: #54a9eb;
}

h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.red {
  color: red;
}

.error {
  padding: 0.5rem;
}

p {
  margin: 0;
  text-align: center;
  line-height: 1.5rem;
}

hr {
  width: 100%;
  border-color: #fff;
  border-bottom: 0;
}

.langs img {
  height: 1rem;
}

.country-link {
  text-decoration: none;
  font-size: 1.25rem;
}

.flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.text-center {
  text-align: center;
}

@media (max-width: 400px) {
  .container {
    height: 90%;
  }
}