border

/* styles.css */
html {
    overflow-y: scroll;
    /* Forces scrollbar rendering instantly */
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: black;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;

    z-index: -5;
    /*Temp change from 0*/
    /* Keeps video behind the content */
}

/* Header Styling */
nav ul li a:hover {
    color: #87CEEB;
    /* Changes color on hover */
    text-shadow: 1px 1px 2px whitesmoke;
    /* Adds a subtle shadow on hover */
}

h4 {
    /* padding-left: 20px; */
    font-family: 'Arial', sans-serif;
    color: whitesmoke;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.5em;
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 2px #87CEEB;
}

h2 {
    text-align: center;
}

h2,
h3 {
    font-family: 'Arial', sans-serif;
    color: whitesmoke;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5em;
    z-index: 3;
    position: relative;
    text-shadow: 1px 1px 2px #87CEEB;
}

h3 {
    padding: 0 50px;
    height: 4vh;
}

.start {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    z-index: 2;
    position: relative;
}

.start>a {
    text-decoration: none;
    color: #333;
    background-color: #87CEEB;
    padding: 20px 60px;
    border-radius: 10px;
    font-size: 1.5em;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); */
}

.start>a:hover {
    letter-spacing: 1px;
}

/* Scrollbar Base */
::-webkit-scrollbar {
    width: 12px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
    background: black;
}

/* Scrollbar Thumb (Lightning Effect) */
::-webkit-scrollbar-thumb {
    background: whitesmoke;
    border-radius: 15px;
}

/* Scrollbar Corner */
::-webkit-scrollbar-corner {
    background: black;
    /* Matches the track */
}

/* Footer Styling */
footer {
    width: 100vw;
    height: 200px;
    color: whitesmoke;
    align-items: center;
    font-family: 'Arial', sans-serif;
    z-index: 2;
    position: relative;
    background-color: black;
}

footer>nav {
    width: 100vw;
    height: 50px;
}

.contactSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100px;
    position: relative;
    z-index: 2;
}

/* .contactSection > .logo {
    grid-column: 1;
    height: 50px;
    width: 50px;
    margin: 0px;
    display: flex;
    margin: auto;
}

.contactSection > #contact {
    grid-column: 2;
    color: whitesmoke;
    z-index: 3;
    position: relative;
    text-shadow: 1px 1px 2px #87CEEB;
    width: 100vw;
    height: 50px;
    text-align: center;
    margin-top: 0px
} */

.contactSection>a,
.contactSection>a>.logo {
    grid-column: 1;
    height: 100px;
    width: 100px;
    margin: 0 auto;

}

.contactSection>#contact {
    grid-column: 2;
    margin: 0px;
    color: whitesmoke;
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 2px #87CEEB;
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

#contact:hover {
    color: #87CEEB;
    text-shadow: 1px 1px 2px whitesmoke;
}

#copyright {
    padding: 0px;
    margin: 0px;
    color: whitesmoke;
    z-index: 2;
    position: relative;
    text-shadow: 1px 1px 2px #87CEEB;
    text-align: center;
    width: 100vw;
    height: 50px;
    line-height: 50px;
}

header {
    display: flex;
    flex-direction: column;
    /* Stack h1 and nav vertically */
    align-items: center;
    /* Center both elements */
    text-align: center;
}

nav {
    margin-top: 10px;
    /* Adds space between h1 and nav */
}

h1 {
    margin-bottom: 10px;
    /* Optional, adds space below h1 */
}

.logo {
    width: 100px;
    height: 100px;
    margin: 10px;
    margin-top: 30px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.0);
}

header>h1 {
    text-align: center;
    border-radius: 20px 20px 0 0;
    font-family: 'Arial', sans-serif;
    color: whitesmoke;
    font-weight: bold;
    font-size: 2.5em;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 4px #87CEEB;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.current-page {
    color: rgb(191, 191, 191);
}

nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    z-index: 2;
    position: relative;
    list-style-type: none;
}

nav ul li a {

    text-decoration: none;
    font-family: 'Arial', sans-serif;
    color: whitesmoke;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    padding: 0px 10px;
    text-align: center;
}

@media screen and (min-width: 809px) {

    /* header>h1 {
            grid-column: 2;
            height: 5vh;
        }
    
        nav {
            grid-row: 2;
            grid-column: 1-3;
            height: 6vh;
            display: flex;
            align-items: center;
        } */

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centers h1 and nav */
        text-align: center;
        height: 25vh;
        z-index: 2;
    }

    .logo {
        position: absolute;
        /* Keeps the logo in place */
        left: 20px;
        /* Adjust this value for positioning */
        top: 20px;
    }

    h1,
    nav {
        margin-left: auto;
        margin-right: auto;
        /* Ensures h1 and nav are centered */
    }

    nav {
        margin-top: 30px;
    }
}

@media screen and (min-width: 1200px) {
    header {
        display: grid;
        grid-template-columns: 1fr 4fr 3fr;
        height: 25vh;
        z-index: 2;
        position: relative;
    }

    .logo {
        grid-column: 1;
        width: 100px;
        height: 100px;
        margin: 20px;
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.0);
    }

    header>h1 {
        grid-column: 2;
        text-align: center;
        border-radius: 20px 20px 0 0;
        font-weight: bold;
        font-size: 2.5em;
        z-index: 2;
        position: relative;
        text-shadow: 2px 2px 4px #87CEEB;
    }

    nav {
        grid-column: 3;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -80px;
    }

    .current-page {
        color: rgb(191, 191, 191);
    }

    nav ul {
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
        z-index: 2;
        position: relative;
        list-style-type: none;
    }

    nav ul li a {

        text-decoration: none;
        font-family: 'Arial', sans-serif;
        color: whitesmoke;
        font-size: 1.2em;
        font-weight: bold;
        transition: color 0.3s ease;
        position: relative;
        padding: 0px 10px;
        text-align: center;
    }
}