html {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}

.wunderdog-logo {
  margin-top: 0;
  height: 3rem;
}

.header {
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

h4 {
  margin-top: 1rem;
  margin-bottom: 0.1rem;
  font-weight: 800;
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

ul {
  padding-left: 0;
}

li {
  list-style-type: none;
  font-size: 1rem;
}

.language-list {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.language {
  display: flex;
  flex-direction: column;
  width: 12.5rem;
  align-items: center;
  font-size: 2rem;
}

.language-logo {
  height: 6rem;
}

.language-title {
  font-weight: bold;
}

.language-description {
  font-size: 0.9rem;
  visibility: hidden;
}

.zoom {
  padding: 2rem;
  transition: transform 0.5s;
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.1);
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color: #cccccc;
  background-color: #f8f8f8;
}

.zoom:hover > * {
  visibility: visible;
}