html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body {
    background: radial-gradient(circle at 30% 30%, #d6f5f5 0%, transparent 90%), radial-gradient(circle at 70% 70%, #fbdce2 0%, transparent 60%), radial-gradient(circle at 50% 50%, #333 0%, #333 100%);
    background-size: 200% 200%;
    background-repeat: no-repeat;
    animation: gradientFlow 120s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    50% {
        background-position: 100% 0%, 0% 100%, 50% 50%;
    }

    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
}

h1 {
    font-size: 12rem;
    letter-spacing: 0.1em;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    filter: blur(4px);
    opacity: 0.8;
    text-align: center;
    width: 100%;
}

h1 sup {
    font-size: 0.5em;
    vertical-align: super;
    position: relative;
    top: -0.3em;
    letter-spacing: normal;
    opacity: 0.6;
}

p {
    font-size: 1.2rem;
    text-align: center;
    margin: 1rem auto;
    opacity: 0.7;
    filter: blur(1px);
    width: 90%;
}

.projects {
    font-size: 0.9rem;
    opacity: 0.6;
}

.projects a {
    color: inherit;
    text-decoration: none;
}



/* Enhanced ul styling */
ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
    width: 90%;
}

ul li {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 1.6s ease;
    backdrop-filter: blur(5px);
    background-color: rgba(200, 200, 200, 0.6);
    /* aspect-ratio: 1/1;
     Makes boxes square */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 226px;
    height: 60px;
}

ul li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
	font-variant: small-caps;
	font-weight: bold;
    transition: none;
}

ul li:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(226, 226, 266, 0.3);
}

/* Main content wrapper to ensure everything stays centered */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 8.8rem;
    }

    p {
        font-size: 1rem;
    }

    ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    ul li {
        /* width: 80%; */
        text-align: center;
    }

    .projects {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Additional responsive fixes for very small screens */
@media (max-width: 480px) {
    h1 {
        font-size: 6.8rem;
    }

    ul li {
        width: 90%;
    }
}

footer {
    position: absolute;
    bottom: 1rem;
    font-size: 0.75rem;
    opacity: 0.4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    height: 36px;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}