* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.background-animatio {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('https://www.transparenttextures.com/patterns/pool-table.png') repeat, linear-gradient(to bottom, rgba(0, 162, 255, 0.6), rgba(0, 162, 255, 0.6));
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    from { background-position: 0 0; }
    to { background-position: -1000px 0; }
}

.content {
    position: relative;
    z-index: 1;
    padding: 20px;
    color: white;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.facilities, .extra-facilities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.facility, .extra-facility {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: calc(33.333% - 40px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.facility:hover, .extra-facility:hover {
    transform: translateY(-10px);
}

.facility img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .facility, .extra-facility {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .facility, .extra-facility {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.9rem;
    }
}

body {
    margin: 0;
    background: linear-gradient(#041291, rgba(0, 162, 255, 0.6));
    font-family: "Euclid Circular A", "Poppins";
    color: #d6dfed;
  }
    
  .background {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .socials {
    gap: 20px;
  }
  
  .socials a {
    font-size: 24px;
  }
  
  .links {
    gap: 10px;
  }
  
  .legal {
    font-size: 12px;
    margin: 0;
  }
  
  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 105%;
    transform: scaleY(3) scaleX(2.25);
    transform-origin: bottom;
    box-sizing: border-box;
    display: block;
    pointer-events: none;
  }
  
  footer {
    position: fixed;
    left: 0;
    bottom: 12px;
    display: flex;
    width: 100%;
    height: 370px;
  }
  
  section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
    padding-bottom: 80px;
    padding-left: 60px;
    width: 100%;
  }
  
  @media (width > 420px) {
    section {
      align-items: center;
      padding-left: 0;
      gap: 20px;
    }
  
    .links {
      gap: 20px;
    }
  }

.extra-facilities img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}