header,
main,
footer {
    position: relative;
    z-index: 2;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: #050505;
    color: white;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background-color: white;
    color: black;
}

nav a {
    margin-left: 30px;
    color: black;
    text-decoration: none;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px;
}

.hero h2 {
    font-size: 60px;
    max-width: 800px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
}

section {
    padding: 100px 60px;
}

.project {
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
}

.cursor-light {
    position: fixed;
    top: 0;
    left: 0;

    width: 400px;
    height: 400px;
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 72%
    );

    filter: blur(20px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;

    animation: pulse-light 2.5s ease-in-out infinite;
}

@keyframes pulse-light {
    0%,
    100% {
        opacity: 0.65;
        scale: 0.9;
    }

    50% {
        opacity: 1;
        scale: 1.1;
    }
}

@media (pointer: coarse) {
    .cursor-light {
        display: none;
    }
}