/* 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;
}

/* Referral Page Styling */
#referrals {
    margin: 20px;
    padding: 20px;
    background-color: #272727;
    border-radius: 8px;
}

#referrals h2 {
    text-align: center;
    margin-bottom: 20px;
}

.referral {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #353535;
}

.referral h3 {
    margin-top: 0;
    color: #ffffff;
}

.referral p {
    margin: 10px 0;
    color: #ffffff;
}

.referral a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.referral a:hover {
    background-color: #0056b3;
}
