body {
    margin: 0;
    font-family: monospace;
    color: white; 
    text-shadow: 0 0 0px, 0 0 3px white; 
    font-size: 16px; 
    letter-spacing: 1px;
    background-repeat: repeat;
    background-position: center;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121212;
    transition: background-color 0.5s, color 0.5s, text-shadow 0.5s;
}

#container {
    width: 850px; 
    background-color: #1e1e1e; 
    border: 1px solid #333333; 
    padding: 15px; 
    margin-top: 15px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    position: relative;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s;
}

#about-image {
    position: absolute;  
    top: -5%;            
    left: 45%; 
    transform: translateY(-80%); 
    width: auto;        
    height: auto;
    scale: 30%;
}

#about-image2 {
    position: absolute;  
    top: -5%;            
    right: 45%; 
    transform: translateY(-80%); 
    width: auto;        
    height: auto;
    scale: 30%;
}


#navbar {
    background-color: #000; 
    color: #bbbbbb; 
    padding: 8px; 
    text-align: center;
    transition: background-color 0.5s, color 0.5s;
}

#navbar a {
    color: #ffffff; 
    margin: 0 10px; 
    text-decoration: none;
    transition: color 0.5s;
    border: none;
    padding: 8px 16px; 
    border-radius: 15px;
    box-shadow: 2px 2px 5px white;
    font-size: 12px; 
    font-family: monospace;
}

#content {
    display: flex;
}

#main {
    flex: 1;
    padding: 15px; 
}

#left-aside {
    margin-top: 15px; 
    width: 180px; 
    background-color: #2a2a2a; 
    padding: 15px; 
    border-right: 1px solid #333333; 
    box-shadow: 0 0 0px, 0 0 6px white;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s;
}

#footer {
    background-color: #000; 
    color: #ffffff; 
    text-align: center;
    padding: 8px; 
    margin-top: 15px; 
    transition: background-color 0.5s, color 0.5s;
}

#ol {
    font-size: 12px; 
}

h1, h2 {
    color: #dddddd; 
    transition: color 0.5s;
    background-color: #ffffff4d;
    padding: 8px; 
    border-radius: 15px;
    font-size: 20px;
}

h1:hover, h2:hover {
    color: #b4b4b4;
    background-color: #00000070;
    transition: color 0.5s, background-color 0.5s;
}

a {
    color: #3399ff; 
    transition: color 0.5s;
}

.lightmode {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 16px; 
    border-radius: 15px;
    box-shadow: 2px 2px 5px white;
    font-size: 12px; 
    font-family: monospace;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightmode:hover {
    background-color: #333;
    box-shadow: 4px 4px 10px white;
}

/* Light mode styles */
body.light-mode {
    color: black;
    background-color: #ffffff;
    text-shadow: 0 0 0px, 0 0 3px rgb(0, 0, 0);
}

body.light-mode #container {
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

body.light-mode #navbar {
    background-color: #333;
}

body.light-mode #navbar a {
    color: #ffffff;
}

body.light-mode #left-aside {
    background-color: #f9f9f9;
    border-right: 1px solid #cccccc;
    box-shadow: 0 0 0px, 0 0 6px rgb(0, 0, 0);
}

body.light-mode h1, body.light-mode h2 {
    color: #333;
    transition: color 0.5s, background-color 0.5s;
    background-color: #ffffff4d;
    padding: 8px;
    border-radius: 15px;
    font-size: 18px;
}

body.light-mode h1:hover, body.light-mode h2:hover {
    color: #000000;
    background-color: #ffffff80;
}

body.light-mode a {
    color: #0066cc;
}

body.light-mode #footer {
    background-color: #333;
}
