body {
    margin: 0;
    padding: 0;
    background-image: url(/static/images/home.jpg); /* Add your background image path */
    font-family: 'Arial', sans-serif;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landingpage {
    text-align: center;
    color: #fff; /* Set the text color to be visible against the background */
    margin-top: 20vh; /* Adjust the top margin as needed */
}

h1 {
    font-size: 3em;
    margin-bottom: 0;
}

.explore {
    background-color: #3498db;
    color: #fff;
    font-size: 1.2em;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}