
/* Basic styling for the website */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #222;
    color: white;
    overflow: hidden;
    position: relative;
}

header {
    background: #333;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
}

.cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6347;
    pointer-events: none;
    animation: cursorAnimation 0.3s ease;
}

@keyframes cursorAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}

.background {
    background: linear-gradient(45deg, #ff6347, #ffb3b3);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: backgroundAnimation 5s infinite;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}
    