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

.container {
    background-color: #e1dbd3;
    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: #cccccc;
    grid-area: sb;
    display: flex; 
    flex-direction: column;
    padding:10px;
    flex-shrink: 1;
}

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

.section-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;
    margin: 5px;
    display: flex;
    justify-content: center;
    height: fit-content;
    flex-grow: 0;
} */

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

.avatar {
    /* height: 280px;
    width: 280px; */
    max-height: 40%;
    aspect-ratio: 1 / 1;
}

p {
    margin:0px;
}

.title{
    /* border-radius: 8px;  */
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 1.2rem;
    margin: 0px;
    text-align: center;
    /* margin-bottom: 5px; */
}

.project-card {
    margin:10px;
    margin-top:0px;
    margin-bottom:0px;
    padding:10px;
    background-color: #cdcdcd;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.content {
    margin-left:10px;
}

.description {
    overflow: auto;
    font-family: Roboto, sans-serif;
    font-size: 1.05rem;
    margin-top: 10px;
    margin-bottom:0px;
}

.language-img {
    display:flex;
    flex-direction: row;
}

.project-img {
    max-height: auto;
    max-width: 40%;
    margin: 5px;
}