.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.wrapper .content {
  font-family: "Actor", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #1f299c;
  font-size: 18px;
}

.wrapper .content a {
  color: #1f299c;
}

@media screen and (max-width: 500px) {
  .wrapper img {
    width: 100%;
  }

  .wrapper .content {
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
}