#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    position: relative;
    min-height: 100vh;
}

.center-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

#sk_logo {
    width: 400px; 
    height: auto;
    margin-bottom: 12px; /* space between logo and text */
}

.coming_soon {
	text-align: center;
	color: aliceblue;
	margin: 0; /* delete marge */
	font-size: 40px;
	font-family: 'Anybody', sans-serif;
}

.coming_soon .coming {
	font-weight: 300; /* Regular */
}

.coming_soon .soon {
	font-weight: 600; /* Bold */
}

@media (max-width: 600px) {
    .center-container {
        top: 50%;
        transform: translate(-50%, -60%);
    }
    #sk_logo {
        width: 300px;
    }

    .coming_soon {
        font-size: 30px;
    }
}
