/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background Image */
body {
  background: url('dreadpop_logo.png') no-repeat left center / cover;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fallback for Missing Image */
.fallback {
  display: none; /* Hidden when the image loads properly */
  background: black;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fallback h1 {
  font-size: 2rem;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 1920px) and (min-width: 1024px) {
  body {
    background-position: left top;
    background-size: auto 100%;
  }
}

@media (max-width: 1024px) {
  body {
    background-position: left center;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  body {
    background-position: left;
    background-size: auto 100%;
  }

  .fallback h1 {
    font-size: 1.5rem;
  }
}
