.cormorant-garamond-allText {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html {
    scroll-snap-type: y mandatory;
}

body {
    background-color: #111111;
}

#pageSection {
    background-color: #111111;
    display: flex;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    color: #fff;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 3vw;
    margin-bottom: 3%;
}

h2 {
    line-height: 150%;
    font-size: 2vw;
}

h3 {
    line-height: 150%;
    font-size: 1vw;
}

a {
    color: white;
}


#highlight {
    margin: 0px;
    background-color: #111111;
    border-radius: 5px;
    padding: 2px;
    transition: margin 1s, padding 1s, background-color 1s, color 1s;
    cursor: pointer;
}

#highlight:hover {
    background-color: #f1a727;
    color: #000;
}

.hiddenBio {
    padding: 20px;
    opacity: 0;
    transition: all 1s;
    transform: translateX(-100px);
    /* background-color: aqua; */
}

.show {
    opacity: 1;
    transform: translateX(0);
}

#mainDisplay {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: rgb(108, 44, 17); */
    margin-left: 10%;
    margin-right: 10%;
    flex-basis: 50%;
    height: 100vh;
    scroll-snap-align: start;
}

#sunrise {
    background-color: #f1a727;
    border: 3px solid #ffffff;
    transition: border-radius 4s, padding 2s;
}

#sunrise:hover {
    border-radius: 25px;
    padding: 30px;
}


@media(prefers-reduced-motion) {
    .hiddenBio {
        transition: none;
    }
}

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 400%;
    margin-bottom: 3%;
}


h2 {
    line-height: 150%;
    font-size: 200%;
}

h3 {
    line-height: 150%;
    font-size: 100%;
}

#mainDisplay {
    flex-basis: 70%;
}

.hiddenBio {
    padding: 10px;
}
}