/* style.css */
body {
  font-family:"Bangers";
  background-color: #d0d7cf;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header, footer {
  background-color: #33aa3b;
  color: white;
  padding: 1rem; /*Vad innebär detta?*/
}

h1 {
  transition: color 0.3s ease;
}

h1:hover {
  color: rgb(253, 0, 51); /* Hover-effekt */
}

img {
  margin-top: 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.1);
}
li {
    text-align: center;
}
ul {
    list-style-position: inside;
}