body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex; /* Changed from flex to allow for absolute positioning of logo */
    flex-direction: column; /* Stacks items vertically */
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    position: relative; /* Added to make absolute positioning of logo relative to the body */
}

.logo {
    position: absolute; /* Positions the logo relative to the nearest positioned ancestor (body) */
    top: 20px; /* Distance from the top */
    left: 20px; /* Distance from the left */
    font-size: 1.8em; /* Adjust font size as needed */
    font-weight: bold;
    color: #0056b3; /* Or any color you prefer for your logo */
    letter-spacing: 1px;
    padding: 5px 10px;
    /* background-color: rgba(255, 255, 255, 0.8); /* Optional: a slight background for visibility */
    /* border-radius: 5px; /* Optional: rounded corners */
}


.tagline {
    font-size: 0.5em; /* Make the tagline half the size of the logo text */
    font-weight: normal; /* Override bold inherited from parent */
    color: #666; /* A slightly lighter color for the tagline */
    margin-top: -5px; /* Pull the tagline up to be closer to the logo */
}

.container {
    padding: 2em;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-top: 50px; /* Add some top margin to prevent content from overlapping with the logo */
}

h1 {
    color: #0056b3;
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

p {
    line-height: 1.6;
    font-size: 1.2em;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
