/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Use min-height instead of height for flexibility */
}

/* Styling for the header and navigation bar */
header {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Title and content styling */
.content {
    margin: 80px auto 0; /* Adjust margin to account for the fixed header */
    flex-grow: 1; /* Allow the content to grow and take up available space */
}

.home-title {
    color: rgb(255, 255, 255);
    font-size: 5.5em;
    margin-top: 0px;
    text-align: center;
}

.home-satire-response {
    color: #ffffff;
    font-size: 69px;
    align-self: center;
    font-style: normal;
    margin-top: 100px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

/* Disclaimer Page Specific Styling */
.disclaimer-content {
    max-width: 800px;
    margin: 120px auto;
    padding: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: left;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-section h1 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.disclaimer-section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #ddd;
}

.disclaimer-card {
    background-color: #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.disclaimer-card h2 {
    font-size: 1.8em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.disclaimer-card p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd;
}
