body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures the page takes at least the full viewport height */
    background-color: rgb(220, 240, 255); /* Your specified background color */
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    text-align: center;
}

.logo {
    max-width: 250px; /* Adjust as needed */
    height: auto;
    display: block; /* Removes extra space below image */
    margin: 0 auto 20px auto; /* Centers the image and adds space below */
}

h1 {
    font-size: 2em; /* Adjust as needed */
    margin: 0;
    font-family: 'Montserrat', sans-serif; /* Apply Montserrat font */
    font-weight: 600;
}
