header {
    background-image: url(images/about.jpg);
}

#intro h3 {
    text-align: left;
    color: rgba(93, 191, 77);
    padding-top: 60px;
}

#intro {
    margin-top: 0;
    padding-top: 0;
}

#team {
    width: 100%;
    margin: 50px auto;
}

#picname {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:20px;
}

#leadership {
    background-color: rgba(189, 223, 179, 0.35);
    padding: 30px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
    padding-bottom: 10px;  
}

#team h3 {
    text-align:left;
}

#team img {
    width: 40%;
    filter:grayscale(100);
    clip-path: circle(at center);
}

#judy, #bruce, #elizabeth, #maureen, #sydney {
    margin-top: 50px;
    align-self: flex-start;
    flex-direction: row;
}

dl {   
    width:50%;
    text-align: center;
    margin: 0 auto;
}

dt {
    font-size: 2em;
    line-height: 1.3em;
    width:100%;
}

dd {
    width: 100%;
}

main p {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

#h {
    text-align: left;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(93, 191, 77);
}

a.button {
    text-decoration: none;
    display: block;
    width:300px;
    margin: 30px auto;
    color: #ffffff;
    background-color: (0, 0, 0, 0.7);
    outline-style: solid;
    outline-width: thin;
    outline-color: #ffffff;
    cursor: pointer;
    padding: 10px;
    text-align: center;
}

a.button:hover {
    background-color: rgba(93, 191, 77, 0.8);
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 30000;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
    z-index: 30000;
}

.popup {
    width: 90%;
    margin: auto;
    align-self: center center;
    padding: 50px;
    background: rgb(189, 223, 179);
    border-radius: 5px;
    position: relative;
    transition: all 5s ease-in-out;
    text-align: center;
    z-index: 30000;
    max-width:500px;
}

.popup h2 {
    margin: 0 auto;
    color: #000000;
    text-align: center;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    z-index: 30001;
}

.popup .close:hover {
  color: #06D85F;
}

.popup .content p {
    color: #000000;
    max-height: 30%;
    overflow: auto;
    z-index: 30001;
}


/*DESKTOP*/
@media screen and (min-width:1030px){
    #team {
        display: flex;
        justify-content: space-around;
        align-self: flex-start;
    }
    
    #judy, #bruce, #elizabeth, #maureen, #sydney {
        width: 350px;
        justify-content: space-between;
    }
    
    #team img {
        width: 300px;
    }
    
    #team img {
        width: 300px;
        clip-path: circle(150px at center);
    }
    
    #picname {
        flex-direction: column;
    }
    
    dl {
        margin-top: 20px;
    }
}