/* Fixed Column Layout */
.fixed-column {
    max-width: 800px; /* Adjust width */
    margin: 40px auto; /* Centering */
    padding: 20px;
    background: #1e1e1e; /* Darker background for contrast */
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
}

/* Ensures text is properly aligned */
.fixed-column p {
    text-align: justify;
    line-height: 1.2;
}


body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

h1, h2 {
    color: #3c9785;
}

a {
    color: #00ccff;
    text-decoration: none;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

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

ul li {
    margin: 10px 0;
    padding: 10px;
    background-color: #1e1e1e;
    border-radius: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 2rem;
    margin-top: 15px;
}

.social-icons a {
    color: #00ccff;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #00ffcc;
}


footer {
    margin-top: 30px;
    font-size: 0.8em;
    color: #888;
}
