body {
    background-color: #0f1115; 
    color: #e0e0e0;           
    font-family: 'Segoe UI', sans-serif;
        margin: 0;
        padding: 20px;

}
    

a {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: rgb(240, 249, 255);
    background-color: rgb(131, 32, 176);
    border-radius: 8px;
    transition: allno 0.3s ease;
}
a:hover {
    background-color: lightblue;
    transform: scale(1.05);
}
h1 {
    text-align: center;
    color: rgb(131, 32, 176);
}
h2 {
    color: rgb(24, 24, 188);
}
h3 {
    color: rgb(245, 226, 13);
}
nav {
    text-align: center;
    margin-bottom: 30px;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: rgb(24, 24, 188);
    font-weight: bold;
}
section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgb(136, 114, 108);
    border-radius: 8px;
}
footer {
    text-align: center;
    text-decoration-color: lab(97.18% -1.34 -4.27);
    margin-top: 40px;
    padding: 20px;
    background-color: rgb(83, 79, 79);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
ul {
    list-style-type: square;
    padding-left: 20px;
    line-height: 1.6;
}
.week h2:hover {
    color: orange;
    text-decoration: underline;
}   
pre {
    background-color: #1e1e1e;
    color: #d4d4d4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
}
code {
    font-family: Consolas, monospace;
}
.profile-image {
    width: 180px;           
    height: 240px;         
    object-fit: cover;      
    border-radius: 50%;    
    display: block;
    margin: 20px auto;      
    border: 2px solid #e75b4e; 

}
.profile-image:hover {
    transform: scale(1.05);
    border-color: rgb(131, 32, 176);
    transition: all 0.3s ease;
}
.profile-image:active {
    transform: scale(0.95);
    border-color: rgb(24, 24, 188);
    transition: all 0.1s ease;
}

.images {
    max-height: 200px;  
    width: auto;         
    display: block;     
    margin: 15px auto;   
    object-fit: contain; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    border-radius: 8px;  
}
h1, h2, h3 {
    color: #39ff14; 
    text-shadow: 
        0 0 5px #39ff14,
        0 0 10px #39ff14,
        0 0 20px #39ff14;
}
ul {
    list-style-type: square;
    padding-left: 20px;
    line-height: 1.6;
}
.week h2:hover {
    color: #ff69b4;
    text-decoration: underline;
}
li {
    margin-bottom: 10px;
}