/* Grundläggande återställning */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stil för hela sidan */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stil för "kortet" i mitten */
.card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

/* Rubrik */
h1 {
  color: #2d3436;
  margin-bottom: 15px;
}

/* Brödtext */
p {
  color: #636e72;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Knapp */
button {
  background-color: #0984e3;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #74b9ff;
}
