:root {
    /* color variabels */
    --grey: rgb(237, 237, 237);
    --pink: rgb(255, 219, 219);
    --violet: rgb(240, 209, 228);
    --green: rgb(178, 250, 246);
    --textBlack: rgba(0, 1, 41, 0.918);
    --textHover: rgba(37, 33, 32, 0.733);
    --textHoverOrange: rgba(255, 38, 0, .733);

    /* page margins */
    margin: 0;

    /* page-wide font default rules */
    color: var(--textBlack);
}

/* remove border around body */
body {
    margin: 0;
    padding: 0;
    cursor: url("../img/circle.svg") 13 13, auto;
}

/* fonts and text */
/* @font-face {
    font-family: 'Cormorant';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/cormorant/v10/H4cgBXOCl9bbnla_nHIiRLmoi4azQTJjFuER.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
} */

/* background gradient animation  */
.background {
    margin: 0;
    min-height: 100%;
    background: linear-gradient(var(--grey), var(--pink), var(--violet), var(--grey));
    background-size: 800% 800%;
    background-attachment: fixed;
    animation: backgroundAnimation 10s ease-in 0s infinite alternate none;
}

@keyframes backgroundAnimation {
    0% {background-position: 0% 0%;}
    33% {background-position: 33% 5%;}
    66% {background-position: 66% 50%;}
    100% {background-position: 100% 50%;}
}

.backgroundStretcher {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* content rules */
.about {
    margin: 0 8rem;
    text-align: left;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}

/* #aboutDiv, #teamDiv {

} */

#aboutDiv {
    flex-basis: 40%;
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

#teamDiv {
    margin-top: 10rem;
    margin-bottom: 10rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-basis: 40%;
}

#teamMembers {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.aboutDiv {
    max-width: 40%;
    margin: 2rem 0;
}

#aboutBody, #maximBody, #maximName, #maximTitle, #paulaBody, #paulaName, #paulaTitle, #networkBody {
    width: 20rem;
}

#maximContent, #paulaContent, #networkBody {
    max-height: 0;
    transform: scale(0);
    transition: trasform 400ms ease 0ms;
}

#maximContent.clicked, #paulaContent.clicked, #networkBody.clicked {
    max-height: 100%;
    transform: scale(1);
    transition: transform 400ms ease 0ms;
}

h2 {
    font-family: 'Lora', serif;
    font-weight: 400;
    text-transform: uppercase;
}

h2:hover {
    cursor: url("../img/redCircle.svg") 13 13, auto;
}

h3 {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 1rem;
}

p {
    font-family: 'Roboto Mono', monospace;
    font-weight: 200;
}

li {
    font-family: 'Roboto Mono', monospace;
    font-weight: 200;
}

@keyframes wipAni {
    0% {color: rgba(0, 0, 0, 1);}
    50% {color: rgba(0, 0, 0, 0);}
    100% {color: rgba(0, 0, 0, 1);}
}

/* footer rules  */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;

    border-top: 1px solid black;
    /* flex-shrink: 0; */
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    animation: footerAnimation 10s ease-in 0s infinite alternate none;
}

.footerLink {
    font-family: 'Roboto Mono', monospace;
    font-weight: 100;
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--textBlack);
    cursor: url("../img/redCircle.svg") 13 13 , auto;
}

a.footerLink:hover, #shhhFooterLogo:hover {
    color: var(--textBlack);
}

@keyframes footerAnimation {
    0% {background-color: var(--grey);}
    33% {background-color: var(--pink);}
    66% {background-color: var(--violet);}
    100% {background-color: var(--grey);}
}

.footerLink {
    flex-grow: 1;
    text-align: center;
    /* font-size: 1rem; */
}

#footerSpacer {
    flex-grow: 5;
}

#shhhFooterLogo {
    height: calc(90px * (25 / 90));
    width: calc(452px * (25 / 90));
    margin: .2rem;
    flex-grow: 1;
    fill: var(--textBlack);
    transition: fill 1s;
}

#services, #about, #contact {
    background-color: rgba(255, 255, 255, 0 );
    color: var(--textBlack);
    transition: background-color 1.5s;
}

#services:hover, #about:hover, #contact:hover {
    background-color: var(--textHover);
    color: white; 
}

#shhhFooterLogo:hover {
    fill: white;
    stroke: var(--textBlack);
    stroke-width: 0.5px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    html {
        font-size: 36px;
    }

    .footerLink {
        font-size: 1.5rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    html {
        font-size: 26px;
    }

    .footerLink {
        font-size: 3rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    html {
        font-size: 22px;
    }

    .footerLink {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 900px) {
    html {
        font-size: 14px;
    }

    .footerLink {
        font-size: 1rem;
    }
}

#email {
    text-align: center;
    font-size: 2rem;
    text-decoration: none;
    color: car(--textBlack);
}