        ::selection {
            background-color: #FFD614;
        }

        a{
            text-decoration: none;
        }

        body {
            background-color: #262626;
            color: #ffffff;
            font-family: "futura-pt", sans-serif;
            font-weight: 500;
            font-style: normal;
            margin: 0px;
            overflow: hidden;
        }

        h1 {
            font-family: "Bricolage Grotesque", sans-serif;
            font-optical-sizing: auto;
            font-weight: 800;
            font-style: normal;
            font-size: 2em;
            width: 70%;
            margin: 0px auto;
        }
        
        /* smaller screens */
        @media (max-width: 768px) {
            h1 {
            font-size: 1.5em;
            }
        }

        .bold {
            font-weight: bold;
        }

        section {
            position: relative;
            display: flex;
            justify-content: center; 
            align-items: center;  
            height: 100svh;
        }

        section .quote {
            align-items: center;
            text-align: center;
        }

        p.author {
            font-size: 1.2em;
            font-weight: bold;
            color: #595959;
        }

        .line {
            border-left: 1px solid #FFD614;
            height: 100svh;
            position: absolute;
            top: 0;
            left: 30px;
        }

        .line p {
            background-color: #262626;
            font-weight: 800;
            color: #ffffff;
            font-size: 1.4em;
            padding: 10px;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            margin-left: -25px;
            margin-top: 50px;
        }

        button.refresh {
            position: absolute;
            right: 20px;
            bottom: 20px;
            width: 50px;
            height: 50px;
            background-color: #FFD614;
            color: #262626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

        button.refresh:active {
            background-color: rgba(255, 214, 20, 0.8);
            transform: scale(0.90);
            transition: 0.3s;
        }

        button i.rotate {
            animation: rotate 0.3s linear;
        }

        button.info {
            position: absolute;
            left: 16px;
            bottom: 20px;
            width: 30px;
            height: 30px;
            background-color: #FFD614;
            color: #262626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 3px solid #262626;
            transition: 0.3s;
        }

        button.info:active {
            background-color: #ffffff;
            transform: scale(0.95);
            transition: 0.3s;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .delay {
            top: 20px;
            right: -300px;
            width: 300px;
            opacity: 0;
            position: absolute;
            z-index: 300;
            animation-name: slideIn;
            animation-delay: 8s;
            animation-duration: 0.6s;
            animation-fill-mode: forwards;
        }

        .promo {
            display: flex;
            color: #595959;
            padding: 10px;
            font-size: 0.9em;
            border-radius: 15px;
            text-align: left;
            z-index: 50;
            gap: 10px;
        }

        .delay a .promo {
            background-color: #ffffff;
            transition: 0.3s;
        }

        .delay a:hover .promo {
            background-color: rgba(255, 214, 20, 0.9);
            color: #262626;
            transition: 0.3s;
        }

        .promo img, .books img {
            max-width: 100%;
            max-height: 100px;
            border-radius: 5px;
        }

        .delay .close, .about-close {
            position: absolute;
            right: -10px;
            top: -10px;
            width: 30px;
            height: 30px;
            background-color: #FFD614;
            color: #262626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center; 
            cursor: pointer;
            z-index: 100;
        }

        .delay .close:active {
            background-color: rgba(255, 214, 20, 1.0);
            transform: scale(0.90);
        }

        .slide-out {
            animation: slideOut 0.6s forwards;
        }

        .zoom {
            animation: fadeInAnimation ease 3.2s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .loading {
            position: absolute;
            display: flex;
            justify-content: center; 
            align-items: center;  
            height: 100svh;
            width: 100%;
            animation: fadeLoading ease 2s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }

        .loading i {
            animation: rotate 3.5s infinite;
            color: #FFD614;
        }

        .about {
            background-color: rgba(255, 214, 20, 1.0);
            color: #262626;
            position: absolute;
            display: flex;
            justify-content: center; 
            align-items: center;  
            height: 100vh;
            width: 100%;
            z-index: 500;
            left: -100%;
            transition: left ease-in 0.5s;
        }

        .about-close{
            color: #262626!important;
            top: 10px!important;
            right: 10px!important;
            border: none;
            transition: 0.3s;
        }

        .about-close:hover{
            background-color: rgba(0,0,0, 1.0)!important;
            color: #FFD614!important;
            transition: 0.3s;

        }
        .about-close:active{
            background-color: #FFD614!important;
            color: #262626!important;
            transform: scale(0.75);
        }

        .about-container{
            text-align: center;
            width: 90%;
        }

        .about.active {
            left: 0;
        }

        a.sa{
            position: absolute;
            color: #262626!important;
            bottom: 20px!important;
            right: 20px!important;
            border: none;
            transition: 0.3s;
        }

        a.sa:hover{
            color:#595959 !important;
            transition: 0.3s;

        }
        a.sa:active{
            color:#595959 !important;
            transform: scale(0.9);
        }

        a.books {
            overflow: hidden;
            position: relative;
            margin:40px auto;
            background-color: rgb(255, 255, 255, 0.6);
            width: 300px;
            display: flex;
            color: #595959;
            padding: 10px;
            font-size: 0.9em;
            border-radius: 15px;
            text-align: left;
            gap: 10px;
            transition: 0.3s ease-in;
        }

        a:hover.books{
            background-color: rgb(255, 255, 255, 0.9);
            transition: 0.3s ease-in;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

        .books .starred{
            position: absolute;
            transform: rotate(45deg);
            right: -86px;
            top: 7px;
            width: 200px;
            height: 13px;
            background-color: #262626;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 3px;
            transition: 0.3s;
        }

        @keyframes fadeLoading {
            0% { opacity:0; }
            50% { opacity:100; }
            80% { opacity:100; }
            100% { opacity:0; }
        }

        @keyframes fadeInAnimation {
            0% { opacity:0; }
            66% { opacity:0; }
            100% { opacity:1; }
        }

        @keyframes slideOut {
            from {
                right: 20px;
                opacity: 1;
            }
            to {
                right: -300px;
                opacity: 0;
            }
        }

        @keyframes slideIn {
            from {
                right: -300px;
                opacity: 0;
            }
            to {
                right: 20px;
                opacity: 1;
            }
        }
