* {
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
}

li {
    list-style: none;
}

.horizontal-list {
    padding: 0 4px;
    list-style: none;
    text-align: left;
    line-height: 24px;
}

.project-type {
    display: inline;
    padding: 0 6px;
    line-height: 28px;
    white-space: nowrap;
    font-family: "Consolas", sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    color: white;
    border-radius: 4px;
}

.green {
    background: #5cb85c;
    border: solid #3e873e 1px;
    box-shadow: 0 1px 0 #3e873e;
}

.orange {
    background: #f7b532;
    border: solid #b98527 1px;
    box-shadow: 0 1px 0 #b98527;
}

.red {
    background: #e54d42;
    border: solid #cc352b 1px;
    box-shadow: 0 1px 0 #cc352b;
}

.colorful {
    background-image: linear-gradient(#eb98c5, #a093e9, #8bdfe0, #94d78d, #c7b289);
    border: solid #1e1e1e 1px;
}

.gallery {
    padding-top: 51px;
    display: inline-block;
    width: 100%;
}

.project-title-gradient {
    display: none;
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}

.gallery-item:hover .project-title-gradient {
    display: block;
}

.project-title {
    position: absolute;
    font-family: Montserrat, sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: white;
    padding: 0 8px 4px;
    bottom: 0;
    text-align: left;
    vertical-align: bottom;
}

.project-text-container {
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
}

.gallery-item {
    position: relative;
    float: left;
}

img, video {
    position: absolute;
    max-width: 100%;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    /* Weak Vignette */
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0.25) 75%,
        rgba(0, 0, 0, 0.6) 100%
    );

    /* Strong Vignette */
    /* background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
); */
}