:root{
    --font-color: #b8a554;
    --bg-color: #0C1015;
    --bg-color-2: #14171F;
}

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

body {
    background-color: var(--bg-color);
    color: var(--font-color);
}

header {
    text-align: center;
    background-color: var(--bg-color-2);
}

header a {
    text-decoration: none;
}

header h3 {
    color: var(--font-color);
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
}

header .container-fluid{
    color: var(--font-color);
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
}

.text-section {
    max-width: 960px;
    width: 100%; 
    margin: 2rem auto; 
    padding: 1rem;
}

.offset-md-4, .mb-3{
    margin-top: 1rem;
}

.text-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.text-section h1 {
    margin-bottom: 1.5rem;
}

.text-section h6 {
    font-family: "Iceberg", sans-serif;
}

.text-section .btn {
    font-family: "Poppins", sans-serif;
    text-align: justify;
    margin-bottom: 1.5rem;
}

h1 {
    font-family: "Iceberg", sans-serif;
    font-weight: 400;
    font-style: normal;
}

p {
    font-weight: bold;
    text-align: justify;
}

.btn-outline-primary {
    color: var(--font-color);
    border-color: var(--font-color);
    font-family: "Saira", sans-serif;
    font-weight: 500;
    font-style: normal;
    transition: 0.3s linear;
}

.btn-outline-primary:hover {
    color: var(--bg-color);
    background-color: var(--font-color);
    border-color: var(--font-color);
}

footer {
    text-align: center;
    margin-top: 1.5rem;
    font-family: "Saira", sans-serif;
    font-weight: bold;
    height: 100%;
    padding: 0.5rem;
    background-color: var(--bg-color-2);
    color: var(--font-color);
}

footer p {
    text-align: center;
    margin-top: 1rem;
}

footer a {
    color: var(--font-color);
    text-decoration: none;
}

  /* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .text-section {
        padding: 1rem;
        font-size: 1rem;
    }

    .text-section h1 {
        font-size: 1.5rem;
    }

    .text-section p {
        font-size: 1rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}