* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
    color: rgb(24, 24, 24);
}

#title {
    font-size: 3rem;
    text-align: center;
}

.main-section {
    margin: 1em;
    padding: 1em;
    border: 3px solid black;
    border-radius: 20px;
}

.project-collection {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.project-fig {
    display: inline-block;
    padding: 1em;
}

.project-fig img {
    height: 15em;
    border-radius: 10px;

    transition: 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.project-fig img:hover {
    transform: scale(1.05);

    transition: 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.project-fig figcaption {
    margin: 0.5em 0;
    text-decoration: none;
}