body {
    background-image: url('/imgs/back_dedsec.jpeg');
    color: #c9d1d9;
    font-family: 'Courier New', Courier, monospace;
}

.header {
    background-color: #161b22ee;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #6a29e2;
    box-shadow: 0 0 25px rgba(106, 41, 226, 0.3);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: #58ff7c;
    font-family: 'Pixelify Sans', sans-serif;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.navbar a:hover {
    background: #6a29e233;
    border-color: #58ff7c;
    text-shadow: 0 0 15px #58ff7c;
    transform: translateY(-2px);
}

.navbar a[href="about.html"] {
    background: #6a29e266;
    border-color: #58ff7c;
    box-shadow: 0 0 15px rgba(88, 255, 124, 0.3);
}

.about-section {
    margin-top: 70px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-container {
    max-width: 800px;
    background-color: #161b22;
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}


h1 {
    font-size: 3rem;
    color: #f1ee0f;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 305px;
    font-family: 'Jacquard 24';
    letter-spacing: 3px;
}



h2 {
    font-size: 1.5rem;
    color: #6a29e2;
    margin-top: 20px;
}

p {
    line-height: 1.6;
}

p.intro {
    font-size: 1.2rem;
    color: #9a9a9a;
}

.highlight {
    color: #58ff7c;
    font-weight: bold;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
    list-style: disc;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
    background-color: #161b22;
    padding: 15px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: #58a6ff;
    text-decoration: none;
    font-family: 'Pixelify Sans';
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #58ff7c;
    text-shadow: 0 0 15px rgba(88, 255, 124, 0.4);
}