.subtitle {
    font-size: 3rem;
}
.hero_container {
    height: 50vh;
}

.projects_page_container {
    /* display: grid;
    grid-template-columns: 1fr 1fr 1fr; */

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 2vh;

    /* background: linear-gradient(135deg, var(--black-background), #0e161e); */
    background-color: #0e161e;
    height: 100%;
    padding: 5vh;
}

.projects_page_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 45vh;
    width: 28vw;
    background-color: var(--black-background);
    color: var(--white-color);
    text-align: center;
    border-radius: 10px;
    padding: 0.5rem;
}

.projects_page_title {
    color: var(--white-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.projects_page_date {
    font-family: 'Source Code Pro', monospace;
    color: var(--primary-color-dark);
    margin-bottom: 1rem;
}

.projects_page_subtitle {
    font-family: 'Source Code Pro', monospace;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.projects_page_image {
    width: 95%;
    height: 25vh;
    object-fit: cover;
    border-radius: 7px;
}

.projects_page_image:hover {
    box-shadow: 0px 0px 20px var(--accent-color-2);
    filter: blur(0.5px);
}

.hero_button {
    margin: 3rem 0 3rem 0;
}


@media screen and (max-width: 960px) {
    .subtitle {
        font-size: 2rem;
    }
    
    .hero_container {
        height: 100vh;
    }

    .projects_page_item {
        width: 90vw;
    }
}