/* style.css */
body {
  font-family: "Rubik Glitch";/*din hämtade Google font*/
  background-color: #d30ed6;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

header, footer {
  background-color: #333;
  color: rgb(199, 14, 216);
  padding: 1rem;
  font-size: 45px;
}

img {
  margin-top: 1rem;
  border-radius: 10px;
  transition: transform 1.5s ease;
  width: 800px;
}

img:hover {
  transform: scale(1.1);
}