body {
    margin: 0;
    font-family: 'Arial Narrow';
    background-color: #000000;
    height: 100%; 
    cursor: default;
}
#initial-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
button {
    padding: 15px 20px; 
    font-size: 20px;
    font-family: 'VT323', monospace;
    cursor: pointer;
    background-color: #5B176D; 
    color: #ECB7F6; 
    border: none; 
    margin-right: 20px; 
    margin-left: 20px;
    border-radius: 6px;
}
canvas {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000; 
}
#canv {
    position: absolute;
    top: 50px;
    left: 100px; 
    z-index: -1;
}
#wordCanv {
    display: none;
    position: absolute;
    top: 50px;
    left: 100px; 
    z-index: -1;
}
a:link,
a:visited {
    text-decoration: none;
    color: #000000;
}
a:hover {
    text-decoration: underline;
    color: #FF66BF;
}

a:active {
    text-decoration: underline
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 200px;
    background-color: #191919;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    padding: 10px 0; 
}

.sidebar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    object-fit: contain; 
}

.social-icon:hover {
    transform: scale(1.2); 
    cursor: pointer;
}

.sidebar li {
    margin: 20px 0;
    text-align: center;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 24px;
}

.sidebar a:hover {
    color: #e6a8f6;
}

.sidebar .tab.active a {
    color: #e6a8f6;
}
.sidebar a:hover {
    color: #e6a8f6;
}

#initial-state {
    margin-left: 60px; 
    position: absolute;
    top: 51%;
    left: 52%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.top-tab {
    position: fixed;
    top: 0;
    left: 200px;
    height: 30px;
    width: 120px;
    background-color: #1e1e1e;
    color: #fff;
    font-family: 'VT323', monospace;
    font-size: 20px;
    z-index: 9; 
    text-align: center;
    line-height: 30px; 
    border-radius: 0; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); 
}


.top-tab span {
    text-transform: capitalize;
    color: #e6a8f6;
}