        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Raleway', sans-serif;
        }
        
        html, body {
           overflow: hidden;
           margin: 0;
           padding: 0;
           height: 100%;
        }

        body {
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }

        .container {
            max-width: 80%;
        }

        .quote {
            font-size: 22px;
            color: black;
            margin-bottom: 20px;
            text-align: left;
        }

        .music-info {
            font-size: 12px;
            color: black;
        }

        /* Popup styling */
        .popup {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
        }

        .popup-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 40px -14px rgba(0,0,0,0.25);
        }

        .popup-title {
            color: #32325d;
            font-size: 1.8em;
            font-weight: 900;
            margin-bottom: 15px;
        }

        .popup-body {
            font-size: 1.1em;
            color: #6b7c93;
            margin-bottom: 20px;
        }

        .popup-button {
            display: inline-block;
            text-decoration: none;
            font-weight: 800;
            font-size: 1em;
            text-transform: uppercase;
            color: white;
            border-radius: 6px;
            padding: 10px 30px;
            background-size: 200% auto;
            background-image: linear-gradient(to right, #181D31 0%, #303A62 50%, #181D31 100%);
            transition: 0.5s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
        }

        .popup-button:hover {
            background-position: right center;
        }