/* Stylesheet for the project overview page */

h2 {
    text-align: center;
}


.projects-container {
    margin: 70px 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
}

.project {
    border: 3px solid #348074;
    border-radius: 15px;
    text-align: center;
    background-color: #1e1e2e;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    max-width: 500px;
}

/* Move project up when hovered over */
.project:hover {
    transform: translateY(-15px) scale(1.02);
    border: 3px solid white;
}

.project img {
    max-width: 100%;
    border-radius: 13px 13px 0 0;
    margin-bottom: 20px;
}

/* Ensure that the image has a pointer cursor instead of magnifying glass when hovered over */
.project img:hover {
    cursor: pointer;
}