.home{
    background:var(--main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: var(--container-width);
}

.home h1{
    font-size: 40px;
    padding: 5px;
    color: var(--main);
    background: var(--invert);
    text-transform: uppercase;
    text-orientation: upright;
    text-align: left;
    margin: 0;
    margin-top: 0px;
    justify-self: flex-start;
    align-self: flex-start;
    font-weight: bold;
    margin-top: 50px;
    letter-spacing: 0.1em;
}

.home section{
    margin-top: 80px;
}

.projects{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.project {
    border: 1px solid white;
    border-radius: 10px;
    flex: 1;
    padding: 10px;
    min-width: 200px;
    min-height: 130px;
    contain: strict;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: first baseline;
}
.project p{
    font-weight: lighter;
}
.project .language{
    color: var(--language-color);
    border: 1px solid var(--language-color);
    border-radius: 5px;
    line-height: revert;
    font-size: 15px;
    padding: 5px 10px;
}

.post-collection{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.post-collection h3{
    font-size: 25px;
    margin: 0;
    font-weight: normal;
}
.post-collection ul{
    flex:4;
    margin: 0px 0px 0px 20px;
    border-left: 1px solid var(--invert);
    list-style: none;
    padding-left: 20px;
}
.post-collection li{
    margin: 5px 0px;
}
.post-collection a{
    text-decoration: none;
    letter-spacing: 0.1em;
    font-weight: 100;
}

body > *{
    width: 100%;
}
body{
    padding:15px;
}