/* Sayfa boyutunu sıfırla */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body arka plan ayarları */
body {
  background-image: url('mezeruna.jpg'); /* Resmin yolunu buraya yaz */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* İçerik kutusu */
.content {
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* İsteğe bağlı karartma */
  padding: 20px;
  border-radius: 10px;
}
