/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Create a full-page background with a blur effect */
.background {
    background-image: url('https://cdn1.epicgames.com/offer/fn/EN_EpicGames_UEFN_G1_2560x1440-1e98d98975f958311beb6a75a7adb608');
    background-size: cover;
    background-position: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Center the "Coming Soon" content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}
