/* Set the background of the entire page to black */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #000000; /* Black background outside the box */
}

/* Container for all page content */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background-color: white; /* White background for the box */
    border: 3px solid #333; /* Dark border for contrast */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Shadow for depth */
}

/* Heading styling */
h1 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin: 0;
    padding-bottom: 10px;
}

/* Paragraph styling */
p {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
}

/* Logo styling */
img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Signature styling */
.signature {
    font-size: 1.5em;
    color: #333;
    text-align: right;
    align-self: flex-end; /* Right-aligns within the container */
    margin-top: 20px; /* Adds space above the signature */
}

/* Individual font styles */
.reenie-beanie {
    font-family: 'Reenie Beanie', cursive;
    font-size: 2.5em;
}