/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Courier New', Courier, monospace;
    background-color: #EEEEEE;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
main{
    margin-top:100px;
    padding:45px;
}

nav li{
    color:black;
}

section{
    margin-top:20px;
}
section#PI, section#bio{
    display:flex;
    gap:100px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
section .description{
    flex:1 1 600px;
}
section img{
    flex:1 1 200px;
    border-radius:10px;
    max-width:90vw;
}

h1{
    margin-bottom:10px;
}

section#links{
    margin-top:80px;
}


@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


section#team h1{
    margin-top:20px;
}


section#images img{
    max-height:275px;
}
section#images{
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    gap:20px;
}


/* Style the button that is used to open and close the collapsible content */
.collapsible {
    cursor: pointer;
    /* padding: 18px; */
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    padding:none;
  }
  

  /* Style the collapsible content. Note: hidden by default */
  .content {
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
  }