body {
    background-image: url(background.png);
}

.title {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.subtitle {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.background {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    background-color: #ffffff;
    opacity: 100%;
    padding: 30px;
}

hr {
    height: 8px;
    border-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0)
    width 70%;
}

.main-page {
    text-align: center;
}  

button {
    display: inline-block;
    background-color: #ffffff;
}

.navbar {
    overflow: hidden;
    background-color: #333;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.nav-decor {
    color: #ddd;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .game-box {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 300px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
  }
  
  .game-box:hover {
    transform: scale(1.03);
  }
  
  .game-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .game-box h2 {
    margin: 10px 0 5px;
    font-size: 1.2em;
  }
  
  .game-box p {
    color: #555;
  }

  .game-box h2 a {
    text-decoration: none;
    color: #333;
  }
  
  .game-box h2 a:hover {
    color: #007bff;
  }
  
 .page {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    background-color: #ffffff;
 }

 h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 }

 p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 }

 .padding {
  padding: 30px;
 }

 .footer {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  background-color: #000000;
  text-align: center;
  color: #f2f2f2;
}

a {
  color: #007bff;
}

#goat-pet.eating img {
  animation: eat-animation 1s ease-in-out infinite;
}

@keyframes eat-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); /* Smaller move for smoother animation */
  }
  100% {
    transform: translateY(0);
  }
}

.no-cursor {
  cursor: none !important;
}


