body {
  background-color: azure;
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

img {
  cursor: pointer;
}

.face {
  align-self: center;
  height: 180px;
  width: 120px;
}

.page{
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.no-margin {
  /* padding: 0; */
  margin: 0;
}

@media only screen and (max-width: 600px) {
  .page{
    width: 95vw;
    margin-bottom: 5em;
  }
}

.links {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

