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: #050404;
    /* 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;
}

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;
}

p {
    margin-bottom: 0.618em;
}

p:last-child {
    margin-bottom: 0;
}

.flex {
    display: flex;
}

.flex--space-between {
    justify-content: space-between;
}

footer {
    border-top: 3px solid #dc052b;
    background-color: #090909;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.footer-social i {
    font-size: 2.5rem;
}

.yt-red {
    color: #ff0000;
}

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

.instagram {
    color: #ccc;
}

#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;
}

.banner {
    background-color: #ffcc00;
    /* Bright background color for attention */
    color: #333;
    /* Text color */
    text-align: center;
    padding: 20px 0;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional shadow for depth */
}

.banner h2 {
    margin: 0;
    font-size: 30px;
}

.banner h4 {
    margin: 0;
    font-size: 20px;
}

.banner p {
    margin: 5px 0 0;
    font-size: 16px;
}