#grad{
    background: transparent;
    /*background-image: radial-gradient(circle, rgba(148,255,247,1) 0%, rgba(255,144,229,1) 100%);*/
}

header {
    backdrop-filter: blur(10px); /* Add a blur effect */
    color: pink; /* Change the text color to pink */
    text-shadow: 0 0 5px rgba(255, 0, 255, 1); /* Add a neon effect to the text */
    text-align: center;
    padding: 20px;
}

section {
    backdrop-filter: blur(10px); /* Add a blur effect */
    color: pink; /* Change the text color to pink */
    text-shadow: 0 0 5px rgba(255, 0, 255, 1); /* Add a neon effect to the text */
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 5px;
}

h1 {
    margin: 0;
}

main {
    margin-top: 20px;
    max-width: 800px; /* Added for better responsiveness */
    margin: 0 auto;
}

#block1 {
    margin-top: 40px;
    text-align: center;
}

#links {
    text-align: left;
}

#links a {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

#links a:hover {
    background-color: #0056b3;
}

body {
    margin: 0;
    background-color: rgb(50,50,50);
    position: relative;
    z-index: -1;
}

#noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Ensure canvas appears behind other elements */
    pointer-events: none;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.cursor-trail-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
}

#content {
    position: relative;
    z-index: 1;
}

#profile-picture {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    margin-top: 20px;
}

#me-info {
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}

#fps-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

#fps-value {
    font-weight: bold;
}

#fps-grade {
    display: block;
}

/* Media queries for smaller screens */
@media screen and (max-width: 600px) {
    #fps-counter {
        font-size: 12px;
        padding: 3px 6px;
    }
}