.projects {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.project {
    padding: 20px;
    cursor: pointer;
}

.project:hover {
    box-shadow: 0px 0px 10px 10px #c9c5c5;
    border-radius: 20px;
    transition-duration: 0.5s;
}

.project:nth-child(2n + 1) {
    margin-top: 100px;
}

.portfolio {
    margin: 35px;
}

#design {
    margin-left: 30px;
}

.see-more {
    display: flex;
    justify-content: right;
    cursor: pointer;
}

.arrow:hover {
    transform: translate(10px);
    transition-duration: 0.5s;
}

.see-more .medium-text {
    color: #2D9CDB;
}

@media screen and (max-width: 700px) {
    .portfolio {
        margin: 10px;
    }

    .project:nth-child(2n + 1) {
        margin-top: 50px;
    }
}

@media screen and (max-width: 600px) {
    .portfolio {
        margin: 5px;
    }

    .projects {
        grid-template-columns: 100%;
    }

    .project:nth-child(2n + 1) {
        margin-top: 0px;
    }

    #design {
        margin-left: 10px;
    }
}