body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    /*background-color: rgba(255, 255, 255, 0.8);*/
    padding: 20px;
    flex-grow: 1;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 20px;
}


header {
    background-color: #020039; /* Optional: Choose a color that matches your theme */
    padding: 20px 0;
    text-align: center; /* This will center the content */
}

.header-content {
    max-width: 1200px; /* or your preferred site width */
    margin: 0 auto;
}

header img {
    max-width: 200px; /* Adjust according to your image's dimensions and desired display size */
    height: auto;
    display: block; /* Make the image a block element to automatically break to the next line */
    margin: 0 auto; /* This will center the block element (image) */
}

nav {
    margin-top: 20px; /* Add some spacing between the logo and navigation links */
}

nav a {
    color: #FFF; /* Adjust as per your design */
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ddd; /* Color when a navigation link is hovered upon */
}






section {
    margin-bottom: 2em;
}






.class {
    margin-bottom: 2em;
    border: 1px solid #ccc;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.class h2 {
    color: #333;
    margin: 0;
}

.class img {
    max-width: 100%;
    height: auto;
}

.class p {
    color: #666;
    line-height: 1.5;
}

h1 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 1em;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

th, td {
    padding: 0.5em;
    border: 1px solid #ccc;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}


footer {
    border-top: 3px solid #B79C44;
    background-color: #020039;
    color: #fff;
    padding: 1em;
    text-align: center;
}
.footer-social i {
    font-size: 2.5rem;
}

.yt-red {
    color: #ff0000;
}
.fb-blue {
    color: #3b5998;
}

#map {
    width: 100%;
    height: 400px;
}


.schedule-day {
    font-weight: bold;
    background-color: #cfcece;
}

.schedule-time {
    background-color: #009688;
}

.schedule-class {
    background-color: #AB47BC;
}

.home-image {
    margin-bottom: 10px;
}

.contact-form {
    margin-left: 5px;
    margin-right: 5px;
}