:root {
    --font-mono: "Special Elite", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

#article-zone-header {
    position: relative;
    top: 9rem;
    left: 0;

    width: 100%;

    text-align: center;

    font-size: 3rem;
    color: var(--dark-blue);

    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.typewriter-font {
    font-family: var(--font-mono);

    margin-top: 1rem;
    margin-left: 0.5rem;
}

#article-zone {
    position: relative;
    top: 10rem;

    width: 80%;
    left: 10%;

    display: grid;

    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-content: center;
}

.blog-image {
    border-radius: 10px;
}

.blog-article {
    position: relative;
    top: 2rem;
    max-height: 15rem;
    max-width: 20rem;

    display: flex;
    flex-direction: column;
    background-color: var(--off-white-background);

    border: solid 1px var(--dark-blue);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    padding: 1.5rem;

    text-decoration: none;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    overflow: hidden;
}

.blog-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.article-header {
    margin-top: -1.5rem;
    font-size: 1.2rem;
    color: var(--dark-blue);
}

.article-date {
    color: var(--dark-blue);
    margin-top: -1rem;
}

#section-7 {
    top: 14rem !important;
}

@media screen and (max-width: 600px) {
    #article-zone-header {
        font-size: 2rem;
        margin: 0;
    }
}

@media screen and (max-width: 400px) {
    #article-zone {
        left: 2%;
        width: 96%;
    }
}