:root {
  margin: 100px;
}
h1 {
  font-size: 50px;
}
p {
  font-size: 30px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url("images/backgroundimage.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #000;
}

header {
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.tile {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.tile:hover {
  transform: scale(1.02);
  background-color: rgba(255, 255, 255, 0.9);
}

.tile img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 15px auto;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.7);
}

.doodle {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.doodle img{
  width: 200px;
  height: auto;
}

.rat{
  transform: rotate(270deg);
}