body {
    margin: 0;
    padding: 0;
}

.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner button {
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
}
