body {
    text-align: center;
    background-image: url("Background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
h1 {
    color: darkcyan;
}
p {
    color: #7D9DA1;
    font-weight: bold;
    font-size: 2dvh;
}


.cursor-glow {
    width: 30px; 
    height: 30px;

    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);

    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);

    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;

    position: fixed;
    pointer-events: none;
    z-index: 1; 

    transform: translate(-50%, -50%);
}

h1:hover {
    transform: scale(1.1);
    cursor: pointer;
}