/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
}

img.logo {
    width: 150px; /* Adjust this value based on the logo's size */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
    color: #333;
    margin: 0;
}

p {
    font-size: 24px;
    color: #666;
}

.coming-soon {
    font-weight: bold;
    color: #e74c3c;
}
