/* pink - rgb(250, 103, 131) */
/* peach - rgb(244, 189, 135) */
/* teal -  rgb(104, 217, 174)*/
/* blue - rgb(198, 234, 233) */
* {
    font-family: 'Jost', sans-serif;
}


.topNav {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    padding-top: .5em;
}

.topNav a {
    box-sizing: initial;
    float: left;
    display: block;
    color: white;
    background-color: rgb(198, 234, 233);
    text-align: center;
    padding: 14px 16px;
    border-radius: 4rem;
    text-decoration: none;
    font-size: 1em;
    margin-left: 2em;
    padding-left: 1em;
    width: 5em;
    border: solid 2px white;
    font-family: 'Jost', sans-serif;
}

.topNav a:hover {
    color: white;
    background-color: rgb(244, 189, 135);
    transition: .3s linear;
}

.topNav a.active {
    color: white;
    background-color: rgb(250, 103, 131);
}

.topNav a.active:hover {
    color: white;
    background-color: rgb(198, 234, 233);
    transition: .3s linear;
}

.topNav .icon {
    display: none;
}

.topNav a#logo {
    padding: 7px 8px;
    margin-right: 3em;
    margin-left: 1em;
    background-color: transparent;
    border: none;
}

.topNav a#logo:hover {
    background-color: transparent;
}

.topNav #logo img {
    width: 15vw;
    max-width: 123px;
}

@media screen and (max-width: 600px) {
    .topNav a:not(:first-child) {
        display: none;
    }

    .topNav {
        position: fixed;
        /* background-color: rgb(104, 217, 174); */
        height: 6em;
        width: 100vw;
    }

    .topNav a.icon {
        float: right;
        display: block;
        align-self: stretch;
        color: rgb(250, 103, 131);
        position: absolute;
        height: 100%;
        margin-right: 1em;
        right: 0;
        border-radius: 0;
        border: none;
        background-color: transparent;
        /* background-color: rgb(250, 103, 131); */
        text-align: right;
    }
}

@media screen and (max-width: 600px) {
    .topNav.responsive {
        position: relative;
    }

    .topNav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .topNav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

#pageTitle {
    background-color: rgb(198, 234, 233);
    height: 80vh;
    padding-top: 5em;
    /* max-height: 400px; */
}

#pageTitle #imageContainer {
    /* background-color: red; */
    background-image: url("../assets/decorative/logos/Zany_LandingPage_V2_no_border.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    height: 100%;
}

footer #footer-container{
    box-sizing: border-box;
    background-color: rgb(104, 217, 174);
    color: white;
    font-family: 'Jost', sans-serif;
    padding: 2em;
    font-size: 1.3em;
}

footer #social-media{
    text-align: right;
}

footer #social-media img{
    width: 2.5em;
    opacity: 1;
    margin: .5em;
    margin-top: -1.5em;
}

footer #social-media img:hover{
    opacity: .7;
    transition: .3s linear;
}

@media screen and (max-width: 600px) {
    #pageTitle {
        height: 70vw;
    }
    footer #social-media img{
        margin-top: 1em;
    }
}