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

body{
    background-color: aliceblue;
    color: #003666;

    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

h1{
    text-align: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #003666;
    margin: 40px auto 20px auto;
}

.bio{
    margin-top: 20px;
    padding: 0px 20px;
}
p{
    text-align: center;
   
}

.divider{
    max-width: 600px;
    width: 90%;
    margin: 20px auto 20px auto;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.grid-item-title {
    justify-self: end;
    width: max-content;
    
}
.grid-item {
    display: flex;
    align-items: flex-start;
}

.grid-item-title h2 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.project-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}




.project-link, .project-link:visited, .project-link:active {
    text-decoration: underline;
    font-size: 14px;
    color: #003666;
}

.project-link:hover {
    color: #006DCC;
}

.link-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.link-link {
    text-decoration: underline;
    font-size: 14px;
    color: #003666;
}

.link-link:hover {
    color: #006DCC;
}

.grid-item p, .grid-item-title p {
    margin: 0 0 10px 0;
    line-height: 1.4;
    font-size: 14px;
}