/* Reset default margins and padding for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Jia', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

h1, h2, p, a, input, button {
    font-family: 'Jia', cursive;
}

/* FONT */
@font-face {
    font-family: 'Jia';
    src: url('Baefont_normal-Regular_V1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* GLOWTEXT */
.glow-text {
  color: #ffffff; /* Text color, adjust as needed */
  text-shadow: 0 0 10px #FF5699, 0 0 20px #FF5699, 0 0 30px #FF5699;
}

/* CUSTOM CURSOR */
body {
    cursor: url('cursor.cur'), auto;
}

/* SCROLL */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f0e6ff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ff99cc, #ff66b3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: #ff66b3;
}