/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-image: url('gymnastics-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
  padding: 1em;
}

header h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

header p {
  font-size: 1.5em;
  margin-bottom: 1em;
  max-width: 600px;
}

.btn {
  padding: 1em 2em;
  background-color: #ff6b6b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff3b3b;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5em;
  }

  header p {
    font-size: 1.2em;
  }

  .btn {
    padding: 0.8em 1.6em;
  }
}
