/* style.css */
body {
  font-family: "Knewave";
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header,
footer {
  background-color: #333;
  color: white;
  padding: 1rem;
  /*Vad innebär detta?*/
}

h1 {
  transition: color 0.3s ease;
}

h1:hover {
  color: crimson;
  /* Hover-effekt */
}

img {
  margin-top: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}