body {
    margin: 0;
    padding: 0;
    background: url('../images/coming-soon.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

header {
    position: absolute;
    left: 0;
    top: 20px;
}

.logo {
    max-width: 220px; /* Set the maximum width of your logo */
}

.content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

h1 {
    margin: 0;
}

p {
    margin-top: 10px;
    text-align: center;
}

.top-button {
    position: absolute;
    top: 32px;
    right: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

