html, body {
    margin:0px;
    --container-width: 100vw;
    --container-height: calc(8/11 * var(--container-width));
}

.container {
    background-color: #faf9f6;
    height: 100vh;
    overflow: auto;
    display: grid;
    grid-template-rows: 2fr 7fr;
    grid-template-columns: 2fr 7fr;
    grid-template-areas: 
    'sb hd'
    'sb mc';
    font-family: Roboto, sans-serif;
}

.info-sidebar {
    overflow: auto;
    background-color: #dbdbdb;
    grid-area: sb;
    display: flex; 
    flex-direction: column;
}

.section {
    overflow: auto;
    grid-area: mc;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 30px;
    padding-left: 50px;
    margin-top: 10px;
}

.title {
    /* width: 300px; 
    height: 50px; */
    border-radius: 8px; 
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 1.5rem;
    margin: 0px;
    border-bottom: 1px solid black;
    border-radius: 0px;
}

.image {
    color: white;
    font-size: 30px;
    padding: 10px 20px;
}

.links {
    font:300px;
    display: flex;
    flex-direction: column;
    padding-left:50px;
}

img {
    width: 300px;
    height: 300px;
}

p {
    margin:0px;
}

.project {
    border-radius: 8px; 
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 1.2rem;
    margin: 0px;
}

.project-card {
    margin:20px;
    margin-left:0px;
}

.content {
    margin-left:10px;
}

.description {
    border-radius: 8px; 
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 1.05rem;
    margin-top: 5px;
    margin-bottom:5px;
}

