h1 > span {
    color: var(--primary-1);
}

#templates-container {
    grid-column: 4 / 12;
    padding: 20px;
    box-shadow: var(--shadow);
    background-color: white;
}

#category-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 2vh;
}

#category-menu button {
    background-color: white;
    border: none;
    color: var(--primary-1-faded);
    padding: 10px 5px;
}

#category-menu button.clicked {
    border-bottom: 3px solid var(--primary-1);
    color: var(--primary-1);
}

.templates {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1vw;
    justify-content: space-around;
}

.templates img {
    width: 18vw;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
}

.templates img:hover {
    box-shadow: none;
}

.templates img:active {
    border: 1px solid var(--accent);
    box-shadow: none;
}

.current-select {
    border: 2px solid var(--accent);
}

@media (orientation: portrait) {
    #job-welcome {
        margin: 3vh 0;
    }

    #templates-container {
        grid-column: 1 / 7;
        margin-bottom: 5vh;
    }

    .templates {
        justify-content: center;
    }

    .templates img {
        width: 40vw;
    }
}
