#shape {
    position: absolute;
    bottom: 0; 
    left: 0;
    z-index: 0;
    width: 50vw;
}

p {
    position: relative;
    z-index: 10;
    margin-top: .75vw;
}

.bio {
    margin: 0vw;
    margin-left: 6vw;
    margin-right: 6vw;
    margin-top: 1vw;
}

header img {
    display: inline;
}

nav {
    display: inline;
    padding-left: 0;
    margin-bottom: 4vh;
}

/* DESKTOP */
@media (min-aspect-ratio: 4/3) {

    header img {
        width: 67vw;
        margin-left: 6vw;
    }
    nav {
        margin-bottom: 4vh;
        width: 33vw;
    }
    nav button {
        max-width: 7vw;
        font-size: 1.4vw;
        height: 6.22vw;
        bottom: 2.65vw;
        padding: 1vw 1vw;
    }
    #header1 {
        display: inline;
    }
    #header2 {
        display: none;
    }
    .bio {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    .bio p {
        font-size: 2.5vw;
    }
    .emilypic img {
        margin-top: 0;
        margin-left: 3vw;
        width: 30vw;
        border: 5vw solid #EA907A;
    }
    #shape {
        visibility: visible;
    }
    p, ul, a {
        font-size: 1.8vw;
    }
    h2 {
        font-size: 3vw;
    }
    h3 { 
        font-size: 2.5vw; 
    }

    .pics2, .pics3 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .pics3 img {
        width: 30%;
    }
    
    .pics2 img {
        width: 45%;
    }

}

/* MOBILE */
@media (max-aspect-ratio: 4/3) {

    header img {
        width: 42vw;
        margin-left: 6vw;
    }
    nav {
        margin-bottom: 4vh;
        width: 58vw;
    }
    nav button {
        max-width: 15vw;
        font-size: 3vw;
        height: 7.5vw;
        bottom: 2.7vw;
        padding: 1vw 2.1vw;
    }
    #header1 {
        display: none;
    }
    #header2 {
        display: inline;
    }
    .bio {
        display: block;
    }
    .bio p {
        font-size: 3.5vw;
    }
    .emilypic img {
        margin-top: 3vw;
        margin-left: 0;
        width: 65vw;
        border: 10vw solid #EA907A;
    }
    #shape {
        visibility: hidden;
    }
    p, ul, a {
        font-size: 3.1vw;
    }
    h2 {
        font-size: 4vw;
    }
    h3 {
        font-size: 3.3vw;
    } 

    .pics2, .pics3 {
        display: block;
    }
    
    .pics3 img {
        width: 90%;
    }
    
    .pics2 img {
        width: 90%;
    }
}

nav button {    
    color:#000000;
    background-color: #FFCB74;
    position:relative;
    text-align: left;
    margin: 0vw;
    border-style: none;
    cursor: pointer;
}

.pics2, .pics3 {
    margin-bottom: 5%;
}

.pics3 img {
    margin: 0 2%;
}

.pics2 img {
    margin: 0 2%;
}

.emilypic img {
    padding: 0vw;
}

h1  {
    color: #FFCB74;
    font-size: 7vw;
    margin-top: 0vw;
    margin-bottom: 0vw;
    text-align: center;
}

h2 {
    color: #508a8b;
    margin-bottom: 0;
    margin-left: 11vw;
}

h3 {
    margin-bottom: 0;
    margin-top: 3vw;
}

a {
    color: #508a8b;
    text-decoration: none;
    font-weight: bold;
}

.bio p {
    margin-top: 0vw;
}

.resume {
    margin: .5vw 3vw 0vw 3vw;
}

.block {
    margin: 0 4vw .5vw 4vw;
    background-color: #ea907a;
    padding: 1vw 6vw 2vw 6vw;
}

.rightText {
    text-align: right;
}

/*Accordion Stuff*/

.accordion {
    background-color: white;
    display:block;
    color: black;
    cursor: pointer;
    padding: 1.4vw 5vw;
    width: 86%;
    text-align: left;
    font-size: 2.4vw;
    border: .5vw solid #EA907A;
    margin: 2vw 7vw;
    border-radius: 0 0 2vw 0;
  }

  .accordion:hover, .active {
    background-color: #EA907A;
    color: white;
  }

  .panel {
    margin: 1vw 10vw;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height .7s ease-out;
  }

  iframe {
      width: 90%;
      height: 80vh;
  }

  video {
      width: 90%;
  }

