:root{
    color-scheme: light dark;
    --text: light-dark(#000000, #FFFFFF);
    --text-active: light-dark(#002299, #55BBFF);
    --background: light-dark(#FFFFFF, #002d6d);
    --background-accent: light-dark(#55BBFF, #002d6d);
    --border: light-dark(#0048ac, #55BBFF);
    --img-background: light-dark(#00000000, #FFFFFF30);
    --accent-text: light-dark(#002d6d, #000000);
    --button-border: light-dark(#00183a, #999999);
    --footer-background: light-dark(#00183a, #333333);
    --footer-text: light-dark(#FFFFFF, #FFFFFF);
    font-family:Arial, Helvetica, sans-serif;
}

body{
    overflow-x: hidden;
}

h1{
    font-size: clamp(1px, 6rem, 11vmin);
}

h2{
    font-size: clamp(1px, 6rem, 10vmin);
}

h3{
    font-size: clamp(1px, 5rem, 9vmin);
}

h4{
    font-size: clamp(1px, 4rem, 8vmin);
}

h5{
    font-size: clamp(1px, 3rem, 7vmin);
}

h6{
    font-size: clamp(1px, 2rem, 6vmin);
}

p{
    font-size: clamp(1px, 1rem, 5vmin);
}

body{
    margin: 0;
}

#home-link{
    height: 70%;
    width: 100%;
    background-color: var(--img-background);
}

#home-image{
    width: 100%;
    height: 100%;
    justify-self: center;
    display: block;
    object-fit: contain;
}

#schedule-button{
    background-color: var(--background);
    border: solid 5px;
    border-color: var(--border) var(--button-border) var(--button-border) var(--border);
    margin: 2% 5%;
    padding: 1%;
    font-size: clamp(1px, 3rem, 5vmin);
    text-decoration: none;
    border-radius: 50px;
    width: 30ch;
    text-align: center;
    color: var(--text);
}

#schedule-button:hover{
    color: var(--text-active);
}

#schedule-button:active{
    border-color: var(--button-border) var(--border) var(--border) var(--button-border);
}

.navbar{
    height: 30vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    background-color: var(--background);
    z-index: 10;
    font-size: clamp(1px, 2rem, 5vmin);
}

#nav-links{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: fit-content;
    height: 20%;
    min-width: 80%;
    font-size: clamp(1px, 3rem, 5vmin);
}

.navbar a{
    font-size: clamp(1px, 2rem, 5vmin);
    color: var(--text);
    text-decoration: none;
    height: 100%;
    align-content: center;
}

#selector{
    position: absolute;
    z-index: -1;
    height: calc(20% - 10px);
    transition: all 0.25s;
    border-top: solid var(--text) 5px;
    border-bottom: solid var(--text) 5px;
    justify-self: center;
    text-align: center;
}

.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(1px, 3rem, 3vmin);
    background-color: var(--footer-background);
}

.footer a{
    color: var(--footer-text);
}

.footer p{
    font-size: clamp(1px, 3rem, 3vmin);
    color: var(--footer-text);
}

.link-holder{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50%;
}

.footer-content p a{
    color: var(--footer-text);
}

.footer-content p a:hover{
    color: var(--text-active);
}

.footer a:hover{
    color: var(--text-active);
}

#footer-img{
    width: 50%;
    height: 100%;
    object-fit: contain;
}

#drop-down-menu{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    top: -40vh;
    height: 70vh;
    background-color: var(--background);
    z-index: 5;
    transition: all 0.5s;
}

#drop-down-menu a{
    text-decoration: none;
    font-size: clamp(1px, 4rem, 10vmin);
    color: var(--text);
}

#drop-down-menu a:hover{
    color: var(--text-active);
}

@media(orientation: landscape){

    #hamburger-holder{
        display: none;
    }

    .drop-down-menu{
        display: none;
    }

}

@media(orientation: portrait){

    #nav-links{
        min-width: 100%;
    }

    #nav-links{
        display: none;
    }

    #hamburger-holder{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--background);
        position: relative;
        height: 7vh;
        width: 7vh;
        border: solid var(--border) 5px;
        border-radius: 5px;
        cursor: pointer;
    }

    #hamburger-holder.clicked{

        #hamburger{
            display: block;
            height: 10%;
            width: 90%;
            background-color: red;
            border-radius: 5px;
            position: relative;
            transform: rotate(45deg);
        }

        #hamburger::before{
            content: "";
            display: block;
            cursor: pointer;
            height: 100%;
            width: 100%;
            background-color: red;
            border-radius: 5px;
            position: absolute;
            top: 0;
            transform-origin: center;
            transform: rotate(90deg);
        }

        #hamburger::after{
            content: "";
            display: block;
            cursor: pointer;
            height: 100%;
            width: 100%;
            background-color: red;
            border-radius: 5px;
            position: absolute;
            top: 0;
            transform-origin: center;
            transform: rotate(90deg);
        }

    }

    #hamburger{
        display: block;
        height: 10%;
        width: 80%;
        background-color: var(--text);
        border-radius: 5px;
        position: relative;
        transition: all 0.5s;
    }

    #hamburger::before{
        content: "";
        display: block;
        cursor: pointer;
        height: 100%;
        width: 100%;
        background-color: var(--text);
        border-radius: 5px;
        position: absolute;
        top: -250%;
        transition: all 0.5s;
    }

    #hamburger::after{
        content: "";
        display: block;
        cursor: pointer;
        height: 100%;
        width: 100%;
        background-color: var(--text);
        border-radius: 5px;
        position: absolute;
        top: 250%;
        transition: all 0.5s;
    }

}