body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #e9f5fc;
    color: #333333;
}

.header {
    text-align: right;
    padding: 10px 20px;
}

.login-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.login-button:hover {
    background-color: #0056b3;
}

hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin-top: 10px;
}

.branding h1 {
    text-align: center;
    margin-top: 20px;
	margin-bottom: 0px;
    font-family: 'Varela Round', sans-serif; 
	font-size: 48px;
}

.logo {
    display: block;
    margin: 0px auto 0px; /* Centers the logo */
    width: 100%; /* Ensures the logo is responsive */
    max-width: 600px; /* Sets the maximum width to at least 2000 pixels */
}

.offer-section {
    text-align: center;
    padding: 0px 20px;
    font-family: 'Varela', sans-serif; /* Using Roboto for better readability */
}

.offer-section h2 {
    margin: 0 0 20px; /* Adds space below the section title */
    font-size: 24px; /* Slightly larger font size for the section title */
}

.offer-section p {
    margin: 0 auto 20px; /* Adds space between paragraphs and centers them */
    line-height: 1.6; /* Improves line height for readability */
    max-width: 600px; /* Restricts the width of paragraphs for optimal reading */
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #e9f5fc; 
    color: #333; /* Dark text color for contrast */
}

footer a {
    color: #007bff; /* Color for links, matching the login button */
    text-decoration: none; /* Optional: removes underline from links */
}

footer a:hover {
    text-decoration: underline; /* Optional: adds underline on hover for better user interaction */
}
