header {
    min-height: 20em;
    padding: 0;
}

header h1 {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 12em;
}

@media (max-width: 500px) {
    header h1 {
        font-size: 8em;
    }
}

.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 13em;
    background-color: var(--blue-primary);
}

.about-me h2 {
    font-size: 3em;
    margin: 0.5em;
}

.about-me p {
    font-size: 1.15em;
}

.about-me img {
    margin: 1.25em;
    width: 2.25em;
    height: 2.25em;
}

@media (max-width: 500px) {
    .about-me p {
        font-size: 1em;
    }
}

.projects-section h2 {
    font-size: 2em;
}

.projects-list {
    display: flex;
    gap: 5em;
    justify-content: center;
    flex-wrap: wrap;
}

.project {
    background-color: var(--yellow-primary);
    max-width: 20em;
    color: var(--blue-primary);
    padding: 1em;
    border-radius: 0.5em;
    transition: 0.25s;
}

.project:hover {
    box-shadow: 0px 0px 15px 5px var(--yellow-secondary);
}

.project h3 {
    text-align: center;
    margin-bottom: 0.5em;
    font-size: 2em;
}

.project img {
    width: 100%;
}

.project p {
    margin: 1em 0;
    font-size: 1.1em;
}

.project ul {
    margin: 1.3em;
}

.project p a {
    color: var(--background);
}

.project-button {
    display: inline-block;
    background-color: var(--blue-primary);
    color: var(--yellow-primary);
    text-decoration: none;
    padding: 0.5em;
    font-size: 1.3em;
    border-radius: 0.25em;
    text-align: center;
    transition: 0.5s;
}

.project-button:hover {
    background-color: var(--blue-secondary);
    color: var(--yellow-secondary);
}