body{
    font-family: Arial, Helvetica, sans-serif;
    color: whitesmoke;
    background-color: rgba(255,50,80,0.8);
}

a{
    text-decoration: none;
    color:whitesmoke;
}

a:hover{
    color:navy;
}

/* Nav */
nav{
    display:flex;
    justify-content: space-around;
    padding: 20px;
}

/* Team Members */
section{
    background-color: white;
    color:navy;
}

h1{
    text-align: center;
    padding-top: 10px;
}

.members{
    justify-content: space-around;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr))
}

.member{
    background-color: rgba(255,50,80,0.8);
    text-align: center;
    border: 5px dotted navy;
    margin: 20px;
}

img{
    width:300px;
}

/* Footer */

footer{
    display: flex;
    justify-content: space-between;
}

.part1{
    padding-top: 20px;
}
.footer1{
    padding: 10px;
}

.medias{
    display: flex;
    justify-content: center;
}

.pad{
    padding-right: 5px;
}

/* Responsive Design */

@media screen and (max-width:1020px){
    .members{
        grid-template-columns: repeat(1, minmax(0,1fr))
    }

    footer{
        display: block;
    }
    .part1, .part2{
        border-bottom: 5px dotted navy;
        padding-bottom: 20px;
    }
}