#wavy-header span {
    display: inline-block;
    animation: wave 1.5s ease-in-out infinite;
  }
  
#wavy-header span:nth-child(1) { animation-delay: 0s; }
#wavy-header span:nth-child(2) { animation-delay: 0.1s; }
#wavy-header span:nth-child(3) { animation-delay: 0.2s; }
#wavy-header span:nth-child(4) { animation-delay: 0.3s; }
#wavy-header span:nth-child(5) { animation-delay: 0.4s; }
#wavy-header span:nth-child(6) { animation-delay: 0.5s; }
#wavy-header span:nth-child(7) { animation-delay: 0.6s; }
#wavy-header span:nth-child(8) { animation-delay: 0.7s; }
#wavy-header span:nth-child(9) { animation-delay: 0.8s; }
#wavy-header span:nth-child(10) { animation-delay: 0.9s; }
#wavy-header span:nth-child(11) { animation-delay: 1s; }
#wavy-header span:nth-child(12) { animation-delay: 1.1s; }
#wavy-header span:nth-child(13) { animation-delay: 1.2s; }
#wavy-header span:nth-child(14) { animation-delay: 1.3s; }
#wavy-header span:nth-child(15) { animation-delay: 1.4s; }
#wavy-header span:nth-child(16) { animation-delay: 1.5s; }
#wavy-header span:nth-child(17) { animation-delay: 1.6s; }
#wavy-header span:nth-child(18) { animation-delay: 1.7s; }
#wavy-header span:nth-child(19) { animation-delay: 1.8s; }
#wavy-header span:nth-child(20) { animation-delay: 1.9s; }
  
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

a:link, a:visited{
    color:#d2d3d4;
    text-decoration:none;
}

a:hover, a:active{
    color:#feffa7;
    text-decoration:none;
}

a{
    font-weight: bold;
}

h1,h2,h3,h4,h5,h6{
    font-family: "EB Garamond", serif;
    font-weight: 600;
    color:#feffa7;
    text-align: center;
}

body{
    color:#d2d3d4;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    margin: auto;
    background-color:#d2d3d4;
    line-height: 1.5em;
}

#container {
    margin:auto;
    background-color:#20272b;
}

#mini-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#bio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#bio p {
    max-width: 70%;
}

#bio img{
    border-radius: 75px;
    border-color:#20272b;
    border-width: 6px;
    border-style:solid;
    max-width: 70%;
}

header{
    background-color:#feffa7;
    text-transform: uppercase;
    padding: 20px;
}

header h1{
    font-size: 3em;
    color:#20272b;
    line-height: 1em;
    text-align: center;
    text-shadow: 3px 2px  #fbd100;
}

footer{
    background-color:#2e353d;
    text-align: center;
    padding: 20px 0px;
}

@media only screen and (min-width: 700px) {
    
    h1, h2, h3 {
        text-align: left;
    }
    
    #container {
        padding: 0 20px;
    }

    #mini-container {
        flex-direction: row;
        align-items:flex-start;
        justify-content: space-between;
        gap: 40px;
        padding: 20px;
    }

    #major, #assignments {
        flex: 1;
      }

    #bio{
        flex: 2;
    }

    #bio img {
        min-width: 200px;
    }
}

@media screen and (min-width: 1200px) {
    
    #container{
        max-width:1200px;
    }
    
}
