body {
    background: radial-gradient(circle at center, #222222 0%, #1a1a1a 70%, #151515 100%);
    font-family: 'Roboto Mono', monospace;
    color: #CCCCCC;
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

#content {
    display: flex;
    align-items: center;
    padding: 20px;
    max-width: 100%;
}

#name {
    padding-right: 40px;
    color: #CCCCCC;
    text-align: center;
}

#info {
    text-align: left;
}

p {
    display: block;
    color: #CCCCCC;
    margin-top: 25px;
}

h1 {
    font-size: 7em;
    color: #EEEEEE;
    background-color: rgba(150, 150, 150, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: solid;
    border-width: 10px;
    border-color: #00FCFF;
    padding: 0;
    width: 1.8em;
    height: 1.8em;
    font-family: 'Space Grotesk', serif;
    font-weight: 300;
}

nav {
    border-left: solid;
    border-width: 5px;
    border-color: #BBBBBB;
    text-align: left;
    padding-left: 40px;
    margin-left: 40px;
}

nav ul {
    list-style-type: none;
    font-size: 1.5em;
}

a:link {
    color: #CCCCCC;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    color: #CCCCCC;
}

a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    body {
        padding: 15px;
        min-height: 100vh;
        height: -webkit-fill-available;
        display: flex;
        align-items: center;
        justify-content: center;
        overscroll-behavior-y: contain;
    }
    
    #content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3em;
        padding: 0;
        width: 100%;
    }
    
    h1 {
        font-size: min(15vw, 7em);
        margin: 0;
        width: 1.8em;
        height: 1.8em;
    }
    
    #name {
        padding: 0;
        display: flex;
        justify-content: center;
    }
    
    nav {
        border-left: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    nav ul {
        padding: 0;
        margin: 1em 0 0 0;
    }
    
    #info {
        display: flex;
        justify-content: center;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 4em;
    }
    
    nav ul {
        font-size: 1.2em;
    }
}

