html {
    background-color: #751FB6;
}

a, a:link, a:visited {
    color: white;
}

.flex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: monospace;
    font-size: 20px;
}

.flex-content h1 {
    font-family: DOS;
    color: white;
    font-size: 3rem;
    text-shadow:
    0 0 1px rgba(173, 216, 230, 0.6),
    0 0 3px rgba(173, 216, 230, 0.4),
    0 0 5px rgba(173, 216, 230, 0.3);
}

.navbar {
    color: white;
    font-family: DOS;
    font-size: 20px;
    text-shadow:
    0 0 1px rgba(173, 216, 230, 0.6),
    0 0 3px rgba(173, 216, 230, 0.4),
    0 0 5px rgba(173, 216, 230, 0.3);
}

.navbar a {
    color: inherit;
    text-decoration: none;
    text-shadow:
    0 0 1px rgba(173, 216, 230, 0.6),
    0 0 3px rgba(173, 216, 230, 0.4),
    0 0 5px rgba(173, 216, 230, 0.3);
    transition: all 0.05s steps(1);
}

.navbar a:hover {
    color: white;
    text-decoration: underline;
    text-shadow:
    0 0 2px rgba(255, 255, 255, 0.9),
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 10px rgba(255, 255, 255, 0.4);
}

.box {
    width: 100%;
    max-width: 800px;
    border: 4px solid #b152f9;
    padding: 20px;
    margin: 20px 0;
    z-index: 2;
    color: white;
    background-color: #000000;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.box a:hover {
    color: white;
    text-shadow:
    0 0 2px rgba(255, 255, 255, 0.9),
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 10px rgba(255, 255, 255, 0.4);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border: 4px solid #b152f9;
    padding: 20px;
    background-color: #000000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    z-index: 4;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.nsfw {
    filter: blur(8px);
    clip-path: inset(0);
    transition: filter 0.2s ease;
}

.nsfw:hover {
    filter: blur(3px);
}
