/* Main Background: Sheldon Blue (#0066CC) */
body {
    background-color: #0066CC; 
}

/* Central container (floating card effect) */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Use padding to ensure content is not hidden by the footer on small screens */
    padding: 20px 0; 
}

/* Style for the content box */
.content-box {
    background-color: #FFFFFF; /* White Background */
    padding: 4rem;
    border-radius: 15px;
    /* Dark shadow for contrast */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); 
    text-align: center;
}

/* Accent Button: Bazinga Orange (#FF6600) */
.btn-bazinga {
    background-color: #FF6600; 
    border-color: #FF6600;
    color: #FFFFFF;
    font-weight: bold;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease;
}

/* Darker tone on hover */
.btn-bazinga:hover {
    background-color: #CC5200; 
    border-color: #CC5200;
    color: #FFFFFF;
}

/* Style for the number 73 */
.prime-number {
    font-size: 4rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Styling for the fixed footer */
.fixed-bottom {
    background-color: #0066CC; 
}
.logo-rounded {
    width: 200px; /* Adjust size as needed */
    height: 200px; /* Must be equal to width for a perfect circle */
    border-radius: 50%; /* Creates the circular mask */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border: 5px solid #0066CC; /* Optional: A border matching Sheldon Blue */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
}