/* Reset some default styles */
body, h1 {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Set up the background image and grayish filter */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(50%);
    z-index: -1;
}

/* Center the content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

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

.coming-soon {
    font-size: 2rem;
    font-weight: bold;
    color: #b3b3b3;
}