.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    padding: 60px;
    height: calc(100vh - 16px);
}

.header {
    height: 60px;
}

#title {
    font-weight: 600;
}

.header-item {
    max-width: 260px;
}

* {
    font-family: sans-serif;
    font-size: 14px;
}

.project-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    height: calc(100% - 160px) !important;
    margin: 0px;
}

.project-img {
    width:100%;
    height:auto;
}

ul {
    list-style-type: none;
}

.project-element {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; 
}

.project-title {
    color: black;
}

a {
    text-decoration: none;
}