body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.2rem;
}

/* Loader Styling */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.loader {
  width: 60px;
  /* Increase loader size */
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #007bff;
  /* Increase border size */
  animation: l20-1 0.8s infinite linear alternate,
    l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%,
        0 0,
        50% 0%,
        50% 0%,
        50% 0%,
        50% 0%,
        50% 0%);
  }

  12.5% {
    clip-path: polygon(50% 50%,
        0 0,
        50% 0%,
        100% 0%,
        100% 0%,
        100% 0%,
        100% 0%);
  }

  25% {
    clip-path: polygon(50% 50%,
        0 0,
        50% 0%,
        100% 0%,
        100% 100%,
        100% 100%,
        100% 100%);
  }

  50% {
    clip-path: polygon(50% 50%,
        0 0,
        50% 0%,
        100% 0%,
        100% 100%,
        50% 100%,
        0% 100%);
  }

  62.5% {
    clip-path: polygon(50% 50%,
        100% 0,
        100% 0%,
        100% 0%,
        100% 100%,
        50% 100%,
        0% 100%);
  }

  75% {
    clip-path: polygon(50% 50%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        50% 100%,
        0% 100%);
  }

  100% {
    clip-path: polygon(50% 50%,
        50% 100%,
        50% 100%,
        50% 100%,
        50% 100%,
        50% 100%,
        0% 100%);
  }
}

@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }

  49.99% {
    transform: scaleY(1) rotate(135deg);
  }

  50% {
    transform: scaleY(-1) rotate(0deg);
  }

  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}

.container {
  width: 100%;
  max-width: 800px;
  /* Increase container width */
  text-align: center;
  background: #fff;
  padding: 30px 50px;
  /* Increase padding */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  /* Increase margin */
}

.racket {
  max-height: 120px;
  max-width: 120px;
  margin-right: 30px;
  margin-top: 20px;
}

.text {
  text-align: left;
}

.button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  /* Increase margin */
}

.start-btn {
  display: inline-block;
  width: 25%;
  /* Decrease button width */
  padding: 14px;
  /* Increase padding */
  font-size: 1.1rem;
  /* Increase font size */
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0 10px;
}

.start-btn:hover {
  background-color: #29609b;
}

/* Footer Styling */
.footer {
  width: 100%;
  background-color: #333;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
}

footer p {
  margin: 0;
  font-size: 0.9em;
  color: #bbb;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-image {
  width: 20px;
  height: auto;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  margin-top: -5px;
}