.summary {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.summary-text {
    width: 65%;
}

.summary-image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learnmore {
    color: black;
    text-decoration: none;
}

.projects {
    padding: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
} 

.project-item {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phones */
@media (min-width: 320px) {
    body {
        width: 100%;
        height: 100vh;
    }

    /* Resizes images */
    img {
        max-width: 100%;
        height: auto;
    }

}