.byte {
    z-index: 9;
}
.nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: linear-gradient(#252525, black);
    padding: 3px 8px;
    border-radius: 10px;
}
.nav a {
    padding: 5px 10px;
    min-width: max-content;
    transition: padding 0.2s ease-in-out;
}
.nav a:hover {
    margin: unset;
    padding: 5px 25px;
}
.main {
    background-color: black;
}
.row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0 4px;
}
.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1 1 230px;
    min-width: 230px;
}
.cobio {
    width: 100%;
    padding: 10px;
    color: #cdcdcd;
    box-sizing: border-box;
    text-align: end;
}
.cobio img {
    height: auto;
    border-radius: 10px;
    transition:
        filter 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
    filter: brightness(0.5);
    cursor: pointer;
    display: block;
    border: 4px solid #545454;
}
.cobio img:hover {
    box-shadow: 0 0 10px 2px #7749ff;
    filter: brightness(0.8);
}
.cobio p {
    display: block;
    padding: 4px 3px;
    margin: 0;
    transition:
        padding 0.3s ease-in-out,
        color 0.3s ease-in-out;
}
.cobio:has(img:hover) p {
    color: #ffffff;
    padding: 18px 3px;
}
header .img {
    background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.84), rgb(0, 0, 0)),
        url(/graphics/images/aesthetic/header.jpg);
    height: 140px;
    background-size: 704px;
    background-position: center;
    filter: grayscale();
    box-shadow: 0 0 15px 3px black;
    position: relative;
    z-index: 9;
    padding: 0 10px;
}
