* {
  box-sizing: border-box;
}

body {
  background-color: white;
  margin: 0;
  padding: 20px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
  max-width: 600px;
}

/* Tablet */
@media (max-width: 768px) {
  body img {
    width: 90%;
    max-width: 400px;
  }

  h1 {
    font-size: 1.5rem;
  }
}

/* Mobil */
@media (max-width: 480px) {
  body {
    padding: 15px;
    gap: 15px;
  }

  body img {
    width: 95%;
    max-width: 300px;
  }

  h1 {
    font-size: 1.2rem;
  }
}