@charset "utf-8";
/* General page styling */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(circle, #444 30%, #000 100%);
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
}
/* Container layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
/* Logo styling */
.logo {
  width: 50px;
  height: auto;
}
/* Title and subtitle */
.title {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}
.subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}
/* Links */
.link {
  color: inherit;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
/* Navigation buttons */
.nav-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}
.nav-buttons a {
  display: inline-block;
  padding: 12px 20px;
  background: lightgrey;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  width: 150px;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
.nav-buttons a:hover {
  background: darkgrey;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}
/* Responsive Layout for iPads & Mobile */
@media (max-width: 1024px) { /* Adjusted for iPads & smaller screens */
  .nav-buttons {
    flex-direction: column;
    align-self: flex-end; /* Aligns buttons to the right-hand side */
    position: absolute;
    right: 20px;
    top: 20px;
  }
    
/*@media screen and (orientation: portrait) {
  body.punchball-game {
    transform: rotate(90deg);
    transform-origin: center;
    width: 100vh;
    height: 100vw;
    overflow: hidden;
    position: fixed;
  }
}*/