.head {
    text-align: center;
    margin: 3rem;
}

.head h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.projects {
    margin: 3rem;
    display: flex;
    gap: 24px;
}

.project {
    background-color: hsl(0, 0%, 15%);
    color: hsl(0, 0%, 80%);
    padding: 2.5rem;
    text-align: center;
    width: 450px;
    height: fit-content;
    border-radius: 1rem;
    transition: all 0.15s ease;
}

.project h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.project p {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.project:hover {
    background-color: hsl(0, 0%, 25%);
    transform: translateY(-10px);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}