body {
    background-image: url("/assets/hex_studios_banner.png");
}

.title2 {
    font-size: 35px;
    margin: 0;
    transition: .2s;
}

.project-anchor {
    text-decoration: none;
}

.project-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    background-color: #222222;
    height: 250px;
    width: 500px;
    margin: 25px;
    border: #ffffff solid 3px;
    border-radius: 10px;
    transition: .2s;
}

.momentum {
    background-image: url("/assets/menu_image_1080p_blurred.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.project-img {
    width: 200px;
}

.project-img img {
    height: 240px;
}

.project-info {
    display: flex;
    flex-direction: column;
    width: 260px;
}

.project-title {
    font-size: 35px;
    font-weight: bold;
    margin: 0;
}

.project-description {
    font-size: 20px;
    margin: 0;
}

@media only screen and (max-width: 900px) {
    .title2 {
        font-size: 30px;
    }
    .project-img img {
        height: 208px;
    }
    .project-title {
        font-size: 30px;
    }
    .project-description {
        font-size: 17.5px;
    }
}

@media only screen and (max-width: 700px) {
    .title2 {
        font-size: 27.5px;
    }
    .project-card {
        height: 200px;
        width: 350px;
    }
    .project-img img {
        height: 144px;
    }
    .project-title {
        font-size: 25px;
    }
    .project-description {
        font-size: 12.5px;
    }
}

@media only screen and (max-width: 450px) {
    .title2 {
        font-size: 25px;
    }
    .project-card {
        height: 150px;
        width: 250px;
    }
    .project-img img {
        height: 96px;
    }
    .project-title {
        font-size: 20px;
    }
    .project-description {
        font-size: 10px;
    }
}