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

body {
  background-color: #f4ecd8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main p {
  font-size: 2rem;
  color: #2e2a24;
  letter-spacing: 0.5px;
}

main .small-text {
  font-size: 1rem;
  color: #2e2a24;
  letter-spacing: 0.5px;
}

main img {
  height: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
}

#cursor-pet {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@media (max-width: 768px) {
  body {
    align-items: flex-start;
    justify-content: flex-start;
  }

  main {
    padding: 2rem 1.25rem;
    width: 100%;
    text-align: center;
  }

  main img {
    height: auto;
    max-height: 180px;
    width: auto;
    max-width: 100%;
  }

  main p {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  main .small-text {
    font-size: 0.9rem;
  }
}
