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

body {
  background-color: #1a5d1a;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  display: grid;
  place-items: center;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  border: 3px solid;
  margin: 5px;
  padding: 10px;
  background-color: #fae392;
  min-width: 100px;
  max-height: 5rem;
  border: transparent;
  border-radius: 8px;
}

.box h2 {
  text-align: center;
  font-size: 2em;
}

.box h3 {
  text-align: center;
  font-size: 0.8em;
}

/* @media */
