html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for better readability */
    padding: 20px;
    border-radius: 10px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    color: #ffffff; /* White color for better contrast */
}

h2 {
    font-size: 1.5em;
    color: #ffffff; /* White color for better contrast */
}

p {
    font-size: 1.2em;
    color: #ffffff; /* White color for better contrast */
}

