body {
    background-image: url('/res/main/nbg.png');
    background-repeat: repeat;
    background-size: 30%;
    width: 100%;
    height: 100%;
    position: relative;
    background-position: center;
}
.mural {
    position: fixed;
    bottom: 3vh;
    left: 0;
    width: 100vw;
    pointer-events: none;
    user-select: none;
}
.logo {
    width: 10vw;
    position: fixed;
    pointer-events: none;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}
.container {
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 10%;
    padding-right: 10%;
    box-sizing: border-box;
    width: 70%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-y: auto;
    margin: auto;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    --fade-amount: 5%; 
    mask-image: linear-gradient(to bottom, transparent, black var(--fade-amount), black calc(100% - var(--fade-amount)), transparent), linear-gradient(to left, black 6px, transparent 6px);
}
.item {
    width: 20%;
    margin: 1%;
    flex: none;
    text-align: center;
    height: fit-content;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #4A3461;
    padding: 1%;
    margin-bottom: 3%;
}

.item:hover {
    background-color: rgba(0, 0, 0, 0.11);
    border-radius: 12px;
}

.item img {
    width: 100%;
    box-shadow: 0px 0px 2px gray;
    border-radius: 1%;
    transform: translateY(0px);
    transition: 50ms;
}

.item img:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 12px black;
}

::-webkit-scrollbar {
    background-color: transparent;
    border-radius: 6px;
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.11);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.flipbook {
    width: 960px;
    height: 595px;
    user-select: none;
}

.flipbook .hard {
    background-color: #4A3461 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flipbook .page {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.11);
}

.page img {
    width: 100%;
    object-fit: cover;
    margin: auto;
    pointer-events: none;
}

.hard img {
    width: 100%;
    object-fit: cover;
    margin: auto;
    box-sizing: border-box;
    pointer-events: none;
}

footer {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    background-color: black;
    color: white;
    padding: 1%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    height: 6vh;
    object-fit: contain;
    user-select: none;
}

footer a {
    height: inherit;
    background-color: black;
    color: white;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: inherit;
}

footer span {
    height: inherit;
    background-color: black;
    color: white;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: inherit;
    border-right: 2px solid white;
}

footer a:hover {
    background-color: white;
    color: black;
}

footer .slogo {
    position: fixed;
    height: inherit;
    bottom: 0;
    right: 0;
}

marquee {
    position: fixed;
    background-color: #4A3461;
    height: 3vh;
    bottom: 6vh;
    left: 0;
    width: 100%;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}