body {
    background-color: #000000;
    color: #c4c4c4;
    text-align: center;
}

#topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 60px;
    background-color: #414141;
    padding: 0 20px;
}

#top-title {
    grid-column: 2;
    margin: 0;
    justify-self: center;
}

#nav-buttons {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 10px;
}

#nav-buttons button {
    width: 100px;
    height: 40px;
    background-color: #313131;
    color: #c4c4c4;
}

#projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 250px));
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.project {
    width: 110px;
    height: 150px;
    background: #313131;
    border-radius: 12px;
    padding: 5px;
}