/* Nollställer marginaler */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full höjd och bakgrundsfärg */
html, body {
  height: 100%;
  background-color: #681942;
font-family: 'Source Sans Pro', Verdana, sans-serif;
  color: #FFFFFF;
}

/* Centrerar innehållet */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
  animation: fadeIn 2s ease-in-out;
}

/* Bild – responsiv + fade */
img {
  max-width: 90%;
  height: auto;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 0.3s;
}

/* Rubrik – fade */
h1 {
  margin-top: 1.5rem;
  font-size: 2rem;
  opacity: 0;
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 0.8s;
}

/* Fade-in keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
