/* style.css */
body {
  font-family:Bitcount+Prop+Single+Ink
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header, footer {
  background-color: #050867;
  color: rgb(171, 181, 230);
  padding: 1rem; /*Vad innebär detta?*/
}

h1 {
  transition: color 0.3s ease;
}

h1:hover {
  color: rgb(220, 207, 20); /* Hover-effekt */
}

img {
  margin-top: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}