
div {
    background-color: transparent;
}

.project {
    background-color: var(--main-color-1);
    padding: 1vw;
    border-radius: 2vw;
    margin-bottom: 4vw;
    display: flex;

    justify-content: space-between;
    box-shadow: 0 0.4vw 0.8vw 0 rgba(20, 0, 61,0.8), 0 0.6vw 2vw 0 rgba(20, 0, 61,0.8);
    transition: background-color ease-in-out 0.3s;
}

.project:hover {
    background-color: var(--accent-color);
    transition: background-color ease-in-out 0.3s;
}

.project_image {
    width: 40em;
    height: auto;
    border-radius: 1vw;

}

.project_image img {
    object-fit: cover;
    border-radius: inherit;
    height: 100%;
    width: 100%;
}


.text {
    display: flex;
    flex-direction: column;
    padding-left: 1vw;
    align-items: space-between;
    justify-content: start;
    margin: 1rem auto auto auto;
}

.text * {
    color: var(--bg-color); 
    align-self: start;
    justify-self: start;  
}

.title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.005em;
}

.text p {
    font-size: 1rem;
}

#andmore .project_image{
    width: 20em;
    height: auto;
}