body { 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
	background-color: #000000;
    font-family: Figtree, sans-serif;  
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinning-image {
    animation: spin 4s linear infinite;
}

@keyframes spin{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); } 
}

.coming-soon-container {
    text-align: center; 
    margin-top: 20px; 
	font-family: 'Figtree', sans-serif;  
	color: white; 
}