body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page {
    background-image: url('background.jpg'); /* Link to your background image */
    background-size: cover; /* Cover the entire div */
    background-position: center; /* Center the image */
    height: 100vh; /* Full viewport height */
    color: white;
    text-align: center;
    padding: 40px 20px 20px; /* Add padding at the top */
}

.logo {
    max-width: 100%; /* Responsive logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Space below the logo */
}

p {
    font-size: 1.5em;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #ff6347; /* Tomato */
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #6a0dad; /* Purple */
}