.project-container{
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0px;
    background-color: #f4f4f4;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

h1.project{
    font-size: 3vmax;
    font-weight: bold;
    text-align: start;
}

p.project{
    font-size: 1.1vmax;
    text-align: start;
}


/* Project images */

.project-unit-image {
    cursor: pointer;
}


/* Dark background covering the screen */

.image-modal {
    display: none;

    position: fixed;
    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.85);

    justify-content: center;
    align-items: center;
}


/* Enlarged image */

.image-modal-content {
    max-width: 90%;
    max-height: 90%;

    object-fit: contain;

    border-radius: 15px;
}


/* Close button */

.image-modal-close {
    position: absolute;

    top: 20px;
    right: 40px;

    color: white;

    font-size: 50px;
    font-weight: bold;

    cursor: pointer;
}