body {
    margin: 0 auto;

    max-width: 1000px;
    padding: 26px;

    border-left: 3px solid #5B6078;
    border-right: 3px solid #5B6078;

    background-color: #24273a;

    box-shadow: 0 0 30px 10px #181926;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;

    background-image: url("svg/LETS-ALL-LOVE-LAIN.svg");

    background-repeat: repeat;
    opacity: 1;

    animation: lain-scroll 10s linear infinite;
}

@keyframes lain-scroll {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 203px -114px;
    }
}

.color-palette-container {
    display: flex;
    flex-direction: row;
}

.color-box-item {
    display: flex;
    height: 40px;
    width: 100%;
    padding: 8px;
}