/* Grundinställningar */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f0ea;
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 800px;
  padding: 20px;
}

/* Logotyp */
.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

/* Rubrik */
h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Text */
p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1;
  padding: 10px;
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  background-color: #000000;
}

/* Knapp */
.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.button:hover {
  background-color: #005fa3;
}

/* Mobilanpassning */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    max-width: 120px;
  }
}