body {
  overflow: hidden;
}

* {
  font-family: "Alexandria", sans-serif !important;
}

.content-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-container {
  width: 92%;
  height: 50%;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.text-container h1 {
  font-size: 3rem;
  text-align: center;
}
.text-container p {
  text-align: center;
}
@media (max-width: 360px) {
  .text-container h1 {
    font-size: 2.5rem;
  }
}
