h1 {
    color: whitesmoke;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 50px;
    text-align: center;
    margin-top: 50px;
}

.rowContainer {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Centers horizontally */
    /*align-items: center; !* Centers vertically *!*/
}

.projectContainer {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-top: 90px;
    margin-right: 50px;
    margin-left: 50px;
    align-items: center;
    text-align: center;
}

.divLink{
    display: block;
    width: 100%;
}

.projectImage{
    /*width: 100%;*/
    max-width: 400px;
    max-height: 225px;
    width: auto;
    height: auto;
}

h2 {
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    color: whitesmoke;
    text-decoration: underline;
}

h2:hover {
    color: red;
    text-decoration: underline red;
}

.noHover:hover {
    color: whitesmoke;
    text-decoration: underline;
}

.projectText {
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    color: whitesmoke;
    font-size: 18px;
}

.projectLink {
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    color: whitesmoke;
    text-decoration: underline;
    font-size: 18px;
}

.projectLink:hover {
    color: red;
    text-decoration: underline red;
}

@media (max-width: 1800px) {
    .rowContainer{
        flex-direction: column;
        /*align-items: flex-start;*/
    }

    .projectContainer {
        margin-right: 100px;
        width: auto;
        margin-left: 100px;
    }

    .projectImage {
        max-width: 900px;
    }

    h2{
        font-size: 35px;
    }

    .projectText {
        font-size: 29px;
    }
}