body {
    font-family:'Times New Roman', Times, serif;
    color: black;
}

/* Style for the header and its text contianing the links to each page */
header {
    background-color: gray;
    font-size: 15px;
    padding: 10px;
    width: calc(100% + 15px);
    top: 0;
    position: relative;
    margin-top: -10px;
    margin-left: -20px;
}
nav {
    text-align: center;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: black;
}


.title {
    display: flex;
    align-items: center;
    justify-content: center;
}

/********** container style **********/
.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

/********** Main div style **********/
.memberInfo_div {
    width: 20%;
    height: auto;
    border: 2px solid black;
    background-color: lightgray;
    justify-content: center;
    padding: 0px;
}

@media (max-width:480px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .memberInfo_div {
        width: 80%;
    }
}
@media screen and(min-width:481px) {
    
}

.member_img {
    width: 200px;
    height: 290px;
}

.member_name {
    margin-top: 0px;
}

.member_major {
    margin-top: -15px;
}

.member_role {
    margin-top: -5px;
}

.member_skills {
    margin-top: -5px;
}


.prompt {
    font-weight: bold;
}
