.parent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 94vh;
    gap: 30px;
}

.project {
    position: relative;
    border: 5px outset rgb(138, 138, 247);
    border-radius: 5px;
    width: 300px;
    height: 90%;
}

.project img {
    width: inherit;
    height: 40%;
}

.content {
    margin-left: 10px;
    margin-top: 5px;
    margin-right: 5px;
}

.content h3 {
    margin-bottom: 10px;
}

.project a {
    text-decoration: none;
    color: antiquewhite;
    position: absolute;
    bottom: 10px;
    right: 10px;

}

.project a:hover {
    background-color: rgb(155, 151, 151);
    color: black;
}

@media only screen and (max-width: 700px) {
    body {
        height: 1400px;
    }

    .parent {
        margin-top: 400px;
        flex-direction: column;
    }

    .project {
        height: 700px;
    }

    .display {
        display: flex;
    }
    .display1{
        display: none;
    }

}