/* Base styles */
body {
    font-family: 'Capitana', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-family: 'Quantum', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Quantum', sans-serif;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #212529;
    text-decoration: none;
    border-bottom: 1px solid #212529;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Navigation */
.nav-bar {
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
    font-family: 'Quantum', sans-serif;
    border-bottom: none;
}

/* Sections */
.presentation {
    margin-bottom: 3rem;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.credits {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
}

/* Media queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
