* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  width: 100%;
  background-image: url("../images/bg.webp");
  background-size: 100% auto;
  background-position: left top;
}

.box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  min-height: 100dvh;
  padding: 2rem;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.image {
  width: 19.5rem;
  max-width: 90%;
  aspect-ratio: 1 / 1;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.heading {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 1024px) {
  body {
    background-size: 120% auto;
  }
}

@media (max-width: 768px) {
  body {
    background-size: 180% auto;
  }
}
