html{
    font-family: 'Open Sans',sans-serif;
    background: whitesmoke;
}
a{
    text-decoration: underline;
    color: black;
}
a:hover{
    color:blue;
}
hr{
    background: grey;
}
.container{
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
    row-gap: 20px;
    column-gap: 20px; 
    margin: 5% 10% 0 10%;
}
.container > *:first-child {
    align-self: stretch;
}
#profile{
    display: block;
    position: relative;
    width: min(99vw,300px);
    height: auto;

}
#name{
    font-weight: bold;
    font-size: larger;
    display: inline;
}
.bio{
    display: inline;
}
.info-card{
    border: 1px solid black;
    border-radius: 0px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: rgb(255, 255, 255);
}
#profile_picture{
    border-radius: 10px;
    width: 300px;
    height: auto;
}
li{
    list-style-type: none;
}
#cards{
    display: flex;
    flex-grow: 2;
    flex-direction: column;
    row-gap: 10px;
    column-gap: 10px; 
}
.listItem{
    padding-left: 85px;
}
#educationHeader{
    margin: 0px;
}
#courses{
    display: inline;
}