* {
  box-sizing: border-box;
}
*/::before */::after {
  box-sizing: border-box;
}

body {
  /* fallback height */
  height: 100vh;

  /* new small viewport height for modern browsers */
  min-height: 100svh;
}
body {
  background-image: url("../images/body.jpg");
  background-repeat: repeat-x;
  background-position: left top;

  background-color: #fffefb;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: center;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.responsive {
  max-width: 100%;
  height: auto;
  align-content: center;
  margin-bottom: 1rem;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.welcome {
  display: flex;
  gap: 1rem;
  justify-content: center;

  font: lighter normal 16px Georgia, "Times New Roman", Times serif;

  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  text-decoration: none;
}
.welcome-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666633;
  font-weight: normal;
}

a:active,
a:hover {
  color: #cc6600;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

main {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.flag {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.flag-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #666633;
  font-size: 1rem;
  transition: transform 0.2s;
}

.flag-link:hover {
  transform: scale(1.08);
}

.flag-link img {
  width: 36px;
  height: 27px;
  margin-bottom: 0, 5;
}

.flex-item {
  flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
  margin: 10px;
  padding: 20px;
}

footer {
  text-align: center;
  padding: 10px 0;
  background-color: #f1f1f1;
}
@media (max-width: 40em) {
  .welcome .welcome-link {
    font-size: 4vw;
  }
}
