* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

nav {
    padding: 20px;
    background-color: #111111;
    border-bottom: 1px solid #333333;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

#logo {
    max-width: 200px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc;
}

.nav-links a.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

#app {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-content p {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    color: #cccccc;
}

.page-content ul {
    line-height: 1.8;
    text-align: justify;
    margin:20px;
    color: #cccccc;
}

.development-message {
    font-size: 3em;
    margin-top: 100px;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: bold;
}

.lorem-content {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .development-message {
        font-size: 2em;
    }

    .page-content h1 {
        font-size: 2em;
    }
}