body {
    font-family: Candara, sans-serif;
    color: #8f2727;
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: url("websitebackground.jpg");
    background-repeat: no-repeat;
    background-size: cover; /* This makes the background image cover the entire body */
    background-attachment: fixed; /* This makes the background image fixed as you scroll */
    ;
}

header {
    background-color: #333;
    color: #F0FFFF;
    padding: 20px;
    position: relative; /* Use relative positioning for the header container */
    z-index: 1; /* Ensure the header stays above other elements */
}

.header-title {
    position: absolute; /* Make the h1 element stay fixed within the header */
    top: 5; /* Stick the h1 element to the top of the header */
    left: 50%; /* Center the h1 element horizontally within the header */
    transform: translateX(-50%); /* Adjust for the centering */
    margin: 0;
}


.navbar {
    background-color: #333; /* Set the same color as your top banner */
    overflow: hidden;
}

    .navbar ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

    .navbar li {
        margin-right: 20px; /* Add spacing between navbar items */
    }

    .navbar a {
        text-decoration: none;
        color: white;
        font-weight: bold;
        padding-left: 5px;
        font-family: Candara, sans-serif;
        letter-spacing: 1px; /* Adjust the letter spacing as needed */
    }

h1 {
    margin: 0;
    left: 0;
    right: 0;
    padding: 5px;
}


ul {
    text-align: left;
    list-style-position: inside;
    padding: 10px 0px 0px;
}


.rainbow-text {
    color: red;
    animation: rainbow 5s infinite;
}

@keyframes rainbow {
    0% {
        color: red;
    }

    25% {
        color: white;
    }

    50% {
        color: blue;
    }

    75% {
        color: white;
    }

    100% {
        color: red;
    }
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
    color: red
}

.section {
    margin-top: 30px;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-content {
    text-align: center;
    margin-bottom: 15px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

    .info-table td {
        padding: 5px;
        border-bottom: 1px solid #ccc;
    }

/* Loading Animation Styles */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: red;
    animation: rotateAnimation 1.5s linear infinite;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.row {
    display: flex;
    flex-direction: wrap;
}

.column {
    flex: 1;
    padding: 10px;
    background-color: #ccc;
}

    .column:nth-of-type(1) {
        background-color: #ddd;
    }

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
