        .decor p:not(details > div > p) {
            line-height: 0;
            font-weight: 600;
        }

        /* .decor a {
            font-weight: 600;
            text-decoration: none;
        } */

        .decor h3 {
            background-color: var(--text);
            color: var(--backdrop);
        }

        .decor img {
            border: 2.5px solid transparent;
        }

        .decor a img:hover {
            border: 2.5px solid var(--highlight-light);
        }

        .col {
            flex: 1;
            display: flex;
            flex-direction: row;
        }

        .left {
            width: 40%;
            display: flex;
            flex-shrink: 0;
        }

        .right {
            width: 60%;
            flex-grow: 1;
            padding-left: 20px;
        }

        .giomi a {
            color: #773737;
        }

        .giomi a:hover {
            color: #94cfe0;
        }

        .enzo a, .otis a:hover {
            color: #2f408b;
        }

        .enzo a:hover, .otis a {
            color: #911c39;
        }

        .amias a {
            color: rgb(104, 98, 120);
        }

        .amias a:hover {
            color: #bb3c22;
        }

        .scroll {
            height: 300px;
            overflow: scroll;
            border-left: 1.5px solid var(--text);
            overflow-y: scroll;
            overflow-x: hidden;
        }

        .scroll p {
            padding-left: 25px;
            padding-top: 7px;
        }

        .scroll a {
            font-weight: bold;
            text-decoration: none;
        }

        .scroll::-webkit-scrollbar-track {
            background-color: var(--backdrop-dark);
        }

        .scroll::-webkit-scrollbar {
            width: 2px;
            background-color: var(--text);
        }

        .scroll::-webkit-scrollbar-thumb {
            background-color: var(--text);
        }

        /* AUDIO PLAYER */

        span.large {
            font-size: 4em;
        }

        .play-pause {
            margin-right: 1em;
        }

        .audio-container {
            display: flex;
            flex-direction: row;
            /* padding: 0 1em; */
        }

        .progress-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-right: 1em;
        }

        .progress-area {
            height: 6px;
            width: 100%;
            background-color: var(--backdrop);
            border-radius: 50px;
            margin: 5px 0;
            float: left;
        }

        .symbols-container,
        .title-container {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

        .title-container span {
            width: 20%;
        }

        .title-container marquee {
            width: 80%;
        }

        .progress-area .progress-bar {
            height: inherit;
            width: 50%;
            position: relative;
            border-radius: inherit;
            background: var(--text);
        }

        .progress-bar::before {
            content: "";
            position: absolute;
            height: 18px;
            width: 18px;
            background-color: var(--text);
            border-radius: inherit;
            top: 50%;
            right: -5px;
            transform: translateY(-45%);
            background: inherit;
            opacity: 0;
        }

        .progress-area:hover .progress-bar::before {
            opacity: 1;
        }

        /* .progress-container .timer {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-content: center;
        } */

        /* .progress-container .controls {
        	display: flex;
            flex-direction: row;
            justify-content: center;
            transform: translateY(-80%);
        } */

        @media screen and (max-width: 900px) {
            .col {
                display: block;
            }

            .left {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0;
            }

            .right {
                width: 100%;
                padding: 0;
            }

            .play-pause {
                margin-left: -0.5rem;
                margin-right: 0.7em;
            }

            .progress-container {
                margin-right: 0.5em;
            }

            .title-container span {
                width: 35%;
            }

            .title-container marquee {
                width: 65%;
            }

        }