body {
    font-family: Arial, sans-serif;
    background-color: #282c30;
    color: #e6e6e6;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #161616;
    padding: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
}

.nav-links li a:hover,
.nav-links li a.active {
    background-color: #161616;
}

section {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
    background-color: #333;
}

h1 {
    color: #ffffff;
}

p {
    color: #e6e6e6;
}

.button-container {
    display: flex;
    flex-direction: column; /* Align buttons vertically */
    justify-content: center;
    align-items: center;
    gap: 10px; /* Adjust the gap between buttons as needed */
    padding: 20px; /* Optional: Add padding if needed */
}

.button {
    display: block;
    width: 100%; /* Full width */
    max-width: 300px; /* Optional: Set a maximum width for the buttons */
    padding: 20px 0; /* Adjust padding as needed */
    font-size: 45px;
    color: #fff;
    background-color: #161616;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #161616;
}

/* Specific active button styles based on the page */
.home-active .home-button {
    background-color: #161616;
}

.about-active .about-button {
    background-color: #161616;
}

.projects-active .projects-button {
    background-color: #161616;
}

.contact-active .contact-button {
    background-color: #161616;
}

img {
    width: 600px;
}