body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgb(17, 184, 226), rgb(9, 212, 87));
 
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgb(171, 43, 230), rgb(212, 66, 9));
    color: white;
    padding: 1em;
}

header h1 {
    margin: 0;
    font-size: 1.5em;
}

header nav {
    display: flex;
    gap: 1em;
}

header nav a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2em;
}

#gallery {
    padding: 20px 0;
    text-align: center;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    margin: 10px;
}

.gallery-item img {
    max-width: 800px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 10px;
}



#pool {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2em 0;
}

.pool-content {
    max-width: 800px; /* Adjust as needed */
}

#pool img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.about-heading {
    text-align: center;
}

#instructors {
    padding: 20px 0;
    text-align: center;
}

.instructor {
    margin: 20px;
    display: inline-block;
}

.instructor img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.instructor h3 {
    margin-top: 10px;
}


#pool p {
    max-width: 800px;
    margin: 1em 0;
    font-size: 1.1em;
}
#teachers {
    padding: 20px 0;
    text-align: center;
}

.teacher {
    margin: 20px;
    display: inline-block;
}

.teacher img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(228, 7, 7, 0.6);  /* Adjust color and size as needed */
            transition: box-shadow 0.3s ease-in-out;
}
.teacher img:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8); /* Glow intensifies on hover */
}

.teacher h3 {
    margin-top: 10px;
}


#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em 0;
}

#contact h2 {
    margin-bottom: 1em;
    font-size: 2em;
}

#contact-form {
    display: flex;
    flex-direction: column;
    width: 300px;
}

#contact-form label {
    margin-top: 1em;
}

#contact-form input, #contact-form textarea {
    margin-top: 0.5em;
    padding: 0.5em;
    font-size: 1em;
}

#contact-form button {
    margin-top: 1em;
    padding: 0.7em;
    background-color: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #004d99;
}

footer {
    background-color: #0e1ce0;
    text-align: center;
    padding: 1em;
    width: 100%;
    position: static;
    bottom: 0;
    margin-top: 20px;
}
.location-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    margin: 20px 0;
}

.map-container {
    flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
    margin: 10px;
}

.schedule-container {
    flex: 1 1 300px; /* Flex-grow, flex-shrink, flex-basis */
    margin: 10px;
}



