*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  height: 100%;
}

body {
  background: #eee;
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.content p {
  font-size: 1.6rem;
  text-align: center;
  margin: 0;
  padding: 0 0 1rem 0;
}

.content a {
  color: #c98554;
  transition: all 0.25s;
}

.content a:hover {
  color: #c98554;
  opacity: 0.6;
}

.content img {
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .content p {
    font-size: 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .content p span {
    padding: 0.7rem;
  }
}

@media (max-width: 420px) {
  .content img {
    width: 100%;
  }
}
