body {
    background-color: black;
    margin: 0;
    text-align: center;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
    background-color: rgb(21, 21, 21);
}

i {
    font-size: 1.5em;
    cursor: pointer;
    color: blueviolet;
}

#photo {
    width: 6em;
    height: 6em;
    background: url('/images/skeleton.png') center/cover;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

#sideMenu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(4px);
    padding-top: 80px;
    transition: 0.35s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

#sideMenu.open {
    left: 0;
}

#sideMenu a {
    color: #b968ff;
    font-size: 1.1em;
    text-align: left;
    padding: 12px 20px;
    display: block;
    text-shadow: 0 0 8px #b968ff;
    transition: 0.2s;
}

#sideMenu a:hover {
    background: rgba(255,255,255,0.05);
    padding-left: 28px;
}

#closeMenu {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.6em;
    color: #d44;
    cursor: pointer;
    transition: 0.2s ease;
}

#closeMenu:hover {
    transform: scale(1.15);
    color: #ff4f4f;
}

#title {
    font-family: "Rubik Dirt", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #38aaff;
    text-shadow: 
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #38aaff,
        0 0 20px #1b7ccc,
        0 0 30px #0f4f99;
}

#title2 {
    margin-top: 2em;
    color: #ff4c4c;
    font-family: "Vast Shadow", serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 
        0 0 2px #ff9999,
        0 0 5px #ff4c4c,
        0 0 8px #cc0000;
}

footer {
    margin-top: 3em;
    padding: 1.5em 0;
    font-size: 0.9em;
    color: #888;
    text-shadow: 0 0 6px rgba(255,255,255,0.1);
}
