main {
    max-width: 80ch;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-weight: normal;
    font-size: x-large;
}

a {
    color: oklch(20% 0 0);
    text-decoration: none;
}

.header-div {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.border {
    border-bottom: 1px solid oklch(20% 0 0);
}

.gray {
    color: oklch(60% 0 0);
}

.small {
    font-size: small;
}

.cv-div {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    line-height: 1.5rem;
}

.project-item {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    transition: 0.5s;
}

.project-item:hover {
    background: rgb(128 128 128 / 20%);
}