@font-face {
    font-family: Header-Font;
    src: url(src/fonts/Sriracha-Regular.ttf);
}

@font-face {
    font-family: Paragraph-Font;
    src: url(src/fonts/Itim-Regular.ttf);
}

@media screen and (min-width:750px) {
    /*Width is greater than Height*/
    .navigationContainer {
        display: flex;
    }
    .compressedNavContainer {
        display: none;
    }
    .navigationContainer>a {
        margin: 0 calc((((100vw - max(22vh, 150px) - 50px)*.8)/6)*.15);
    }
    .navBarButton {
        --bWidth: calc((((100vw - max(22vh, 150px))*.75)/6) - 1px);
        width: var(--bWidth);
        height: calc(var(--bWidth)/2);
    }
    .navBarButtonActive {
        --bWidth: calc((((100vw - max(22vh, 150px))*.75)/6) - 1px);
        width: var(--bWidth);
        height: calc(var(--bWidth)/2);
    }
    .centerContentContainer {
        width: 70%;
    }
    .tabbedCenterContentContainer {
        width: 70%;
    }
}

@media screen and (max-width:750px) {
    /*Width is less than Height*/
    .navigationContainer {
        display: none;
    }
    .compressedNavContainer {
        display: flex;
    }
    .navigationContainer>a {
        margin: 0 calc(((100vw*.8)/6)*.1);
    }
    .navBarButton {
        --bWidth: calc((100vw*.8)/6);
        width: var(--bWidth);
        height: calc(var(--bWidth)/2);
    }
    .navBarButtonActive {
        --bWidth: calc((100vw*.8)/6);
        width: var(--bWidth);
        height: calc(var(--bWidth)/2);
    }
    .centerContentContainer {
        width: 80%;
    }
    .tabbedCenterContentContainer {
        width: 80%;
    }
}

.pageBody {
    background: url("src/Page_Background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: auto;
    z-index: -1;
}

.pageTopContainer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.logoContainer {
    float: left;
    position: relative;
    background-repeat: no-repeat;
    cursor: pointer;
}

.logoContainer img {
    width: max(12.2vw, 155px);
    height: auto;
}

.logoContainer:hover{

}

.navigationContainer {
    /*display: flex;*/
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    float: right;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 2%;
    margin-bottom: 1vh;
    padding: 0;
}

.navigationContainer>a {
    text-align: center;
}

.navBarButton {
    background: url("src/Cloud_Button.png");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Header-Font, cursive;
    color: black;
    font-size: .9vmax;
    float: right;
    position: relative;
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    content: "";
    max-width: 126px;
    max-height: 63px;
}

.navBarButton:hover {
    background-image: url("src/Cloud_Button_Active.png");
}

.navBarButtonActive {
    background: url("src/Cloud_Button_Active.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: black;
    font-family: Header-Font, cursive;
    font-size: .9vmax;
    float: right;
    position: relative;
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    content: "";
    max-width: 126px;
    max-height: 63px;
}

.compressedNavContainer {
    --bWidth: calc((((100vw - 22vh)*.75)/6) - 1px);
    /*display: none;*/
    width: 100%;
    height: 6.2vw;
    min-height: 33px;
    background-color: rgba(222, 251, 255, 0.8);
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.hamburgerButton {
    background: none;
    display: block;
    position: relative;
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: center;
    content: "";
    margin-right: 10px;
    opacity: .6;
    height: 100%;
    width: auto;
}

.hamburgerButton:hover {
    opacity: 1;
}

.hamburgerButton img {
    height: 100%;
    width: auto;
}

.sidePanelBackground {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(54, 54, 54, 0.2);
    z-index: 4;
}

.sidePanelContainer {
    display: block;
    position: fixed;
    left: 0%;
    top: 0%;
    width: 0%;
    height: 100%;
    z-index: 5;
    transition: width .1s;
}

.sidePanel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(222, 251, 255, 0.85);
    align-items: flex-end;
    overflow: auto;
}

.sidePanel a {
    margin-top: min(2vw, 10px);
}

.sidePanelExitButton {
    background: none;
    display: block;
    text-align: center;
    cursor: pointer;
    margin-right: 3vw;
    margin-top: 5vh;
    border: none;
    content: "";
    height: 5vw;
    width: auto;
    max-height: 40px;
    max-width: 40px;
}

.sidePanelExitButton img {
    position: relative;
    height: 100%;
    width: auto;
}

.sideNavLinkItemActive {
    font-family: Header-Font, cursive;
    font-size: max(3.8vh, 20px);
    color: black;
    text-overflow: ellipsis;
    text-decoration: underline;
    background: none;
    float: right;
    position: relative;
    cursor: pointer;
    border: none;
    margin-right: 3vw;
    height: auto;
    width: auto;
}

.sideNavLinkItem {
    font-family: Header-Font, cursive;
    font-size: max(3.8vh, 20px);
    color: black;
    text-overflow: ellipsis;
    background: none;
    float: right;
    position: relative;
    cursor: pointer;
    border: none;
    margin-right: 3vw;
    height: auto;
    width: auto;
}

.tabbedCenterContentContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    margin: 0 auto;
    min-height: 80vh;
}

.tabButton {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    font-size: min(2.2vw, 15px);
    line-height: 100%;
    font-family: Header-Font;
    color: black;
    float: left;
    cursor: pointer;
    border: none;
    justify-content: center;
    align-items: baseline;
    width: 13vw;
    min-height: min(7.4vw, 40px);
    background-color: rgba(222, 251, 255, .9);
    border-style: solid solid none solid;
    opacity: .5;
    border-style: none;
    margin-top: auto;
    margin-bottom: 0;
}

.tabButton:hover {
    background-color: rgba(175, 175, 175, .9);
}

.tabButton.active {
    background-color: rgba(222, 251, 255, .9);
    border-style: solid solid none solid;
    border-color: rgba(255, 255, 255, .8);
    width: 13vw;
    min-height: min(7.8vw, 45px);
    opacity: 1;
    top: 0;
}

.tabContentContainer {
    background-image: linear-gradient(rgba(222, 251, 255, .9), rgba(222, 251, 255, 0.9), rgba(222, 251, 255, 0.5), rgba(222, 251, 255, 0.8), rgba(222, 251, 255, 0.0));
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabContent {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.tabContent p {
    font-family: Paragraph-Font, cursive;
}

.privacyPolicyContainer{
    margin-left: 10px;
    font-family: Paragraph-Font;
    font-size: min(2.2vw, 15px);
  }