.about {
    box-sizing: border-box;
    border-top: var(--border);
    padding: var(--padding);
}

.about-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--gap);
}

.about-list div {
    width: 29vw;
    height: fit-content;
    min-width: 200px;
}

.about-list h3 {
    box-sizing: border-box;
    width: 29vw;
    min-width: 200px;
    margin: 0;
}

.about-list ul {
    margin: 0;
    padding: var(--padding);
}

@media (max-width: 1000px) {
    .about-list {
        flex-direction: column;
    }
    .about-list div {
        width: auto;
    }
}

.projects {
    border-top: var(--border);
    border-bottom: var(--border);
    box-sizing: border-box;
    padding: var(--padding);
}

.projects h2 {
    margin: 0;
    margin-bottom: var(--gap);
}

.projects a {
    margin-top: var(--gap);
    text-decoration: underline;
    font-size: 17px;
    color: black;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.projects a:hover {
    color: white;
    background-color: black;
}

.projects-container {
    display: flex;
    overflow-x: scroll;
}

.project {
    display: flex;
    flex-direction: column;
    margin-right: var(--gap);
    margin-bottom: var(--padding);
    flex-grow: 0;
    flex-shrink: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    border: var(--border);
    text-transform: uppercase;
}

.project img {
    width: 100%;
    height: 300px;
    background-image: url('/resources/img/missing.png');
}

.project .content {
}

.project .project-title {
    display: block;
    padding: 10px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.project .project-description {
    display: none;
}
