  body {
            font-family: "Jost", sans-serif;
            background-color: #FFFFFF;
            color: #2D2736;
            overflow-x: hidden;
        }
        .font-title {
            font-family: "Uncial Antiqua", serif;
        }
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #FFFFFF;
        }
        ::-webkit-scrollbar-thumb {
            background: #8E7AB5;
            border-radius: 3px;
        }
        .underline-animation {
            position: relative;
        }
        .underline-animation::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 1.5px;
            bottom: -4px;
            left: 0;
            background-color: #8E7AB5;
            transform-origin: bottom right;
            transition: transform 0.35s ease-out;
        }
        .underline-animation:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }