/* THE KNOWLEDGE OF EVERYTHING - MASTER STYLE SHEET */

/* 1. This centers everything and makes the background pitch black */
body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Garamond', serif;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertical Center */
    align-items: center;     /* Horizontal Center */
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* 2. This controls the Wings (Logo) */
img {
    width: 95vw;          /* Stretch wide */
    max-width: 1200px;    /* But not TOO wide on huge screens */
    max-height: 55vh;     /* This keeps it from pushing the buttons off the bottom */
    height: auto;
    object-fit: contain;  /* Keeps the image proportions perfect */
    margin-bottom: 20px;  /* Space between image and buttons */
}

/* 3. This controls the layout for the buttons */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

/* 4. This makes the buttons look clean and professional */
.gate-button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

/* 5. This makes the buttons turn white when you hover over them */
.gate-button:hover {
    background: #ffffff;
    color: #000000;
}

/* 6. Styling for the Text/Agreement pages */
h1 {
    font-weight: normal;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

p {
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 20px;
}