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

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

@media screen and (min-aspect-ratio: 1/1) {
    /*Width is greater than Height
        Logo Text and banner should be in the same row
    */
    /*top margin for nav bar is 2% or 2vh*/
    /*Logo text is .413 of 22vh*/
    /*--bWidth: calc((((100vw - 22vh)*.75)/6) - 1px);*/
    /*footer will be about 4.5vw tall */
    /**/

    /*Total height of top for this case*/
    /*2vh (top margin) + height of button (bWidth/2) + 1vh (bottom margin)*/

    .homePageContentContainer {
        --navHeight: calc(((((100vw - 22vh)*.75)/6) - 1px)/2);
        --logoHeight: calc(.413*22vh);

        height: calc(100vh - var(--navHeight) - max(4vw, 70px) - 3vh);
        width: calc(100vh - var(--navHeight) - max(4vw, 70px) - 3vh);
    }
}

@media screen and (max-aspect-ratio: 1/1) {
    /*Width is less than Height
        Logo text will be above nav bar
    */
    /*--bWidth: calc((100vw*.8)/6);*/
    .homePageContentContainer {
        height: 80vw;
        width: 80vw;
    }
}

.homePageContentContainer {
    position: relative;
    text-align: center;
    max-width: 100%;
    max-height: 100%;
    margin-top: 0;
    margin: 0 auto;
    z-index: 0;
}

.gradientContainer {
    top: 0%;
    position: relative;
    background-image: radial-gradient( rgba(222, 251, 255, 0.4) 50%, rgba(222, 251, 255, 0.4) 60%, rgba(222, 251, 255, 0.0) 70%);/*50,60,70*/
    width: 100%;
    height: 100%;
    display: block;
}

.gradientContainer img {
    position: absolute;
    display: block;
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popUpBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    z-index: 2;
    display: flex;
}

.popUpContent {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
    word-wrap: normal;
    text-align: center;
    font-family: Paragraph-Font;
    font-size: 2.6vmin;
    /*sky is 66, 182, 229*/
    background-image: radial-gradient( rgba(222, 251, 255, 0.97) 45%, rgba(222, 251, 255, 0.75) 55%, rgba(222, 251, 255, 0.0) 70%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialMediaFooter {
    position: fixed;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    display: flex;
}

.socialMediaFooter>a {
    margin: 0 .5vw;
}

.socialMediaIcon {
    position: relative;
    min-width: 45px;
    min-height: 45px;
    width: 4vw;
    height: 4vw;
    max-width: 100px;
    max-height: 100px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
}

.socialMediaIcon:hover {
    background-color: rgba(222, 251, 255, 0.3);
    border-radius: 50%;
}

.socialMediaIcon img {
    position: relative;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.homePagePrivacyPolicyContainer{
    font-family: Paragraph-Font;
    font-size: 2.6vmin;
    position: fixed;
    padding-left: 2%;
    left: 0;
    bottom: 0;
    width: auto;
    height: auto;
    display: flex;
}