@font-face {
  font-family: pixel_font;
  src: url(fonts/Jersey10-Regular.ttf);
}

body {
  font-family: pixel_font;
  margin: 0;
  padding: 20px;
  text-align: center;
  background: #A982C8;
}

h1 {
  font-size: 50px;
  color: #212121;
}


.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#ice-creams{
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid #212121;
  padding: 10px;
  width: 260px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}

img {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
  padding: 0;
}

img:hover {
  animation: tilt_animation 2s infinite ease-in-out alternate;
}

h2 {
  font-size: 1.5em;
  margin: 0;
  color: #333333 ;
}

h3 {
  color: #212121;
}

a {
  text-decoration-line: none;
  color: #3737fd;
}

@keyframes tilt_animation {
  0% { 
    transform: translateY(0); 
  }
  100% { 
    transform: translateY(-10px); 
  }
}






