/* 1. REGISTER CUSTOM FONT */
@font-face {
    font-family: 'OptimismSans';
    /* Using the local files you provided */
    src: url('../fonts/OptimismSans.ttf') format('truetype'),
         url('../fonts/OptimismSans.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* 2. CORE LAYOUT & BACKGROUND */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'OptimismSans', sans-serif;
    color: #ffffff;
    
    /* THE BACKGROUND FIX */
    /* Changed filename to lab.png per your update */
    background: #1a1a1a url('../images/lab.png') no-repeat center center fixed;
    background-size: cover;
}

/* 3. CONTENT CONTAINER */
#Content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* Soft dark overlay to make the pink logo and white text pop */
    background: rgba(0, 0, 0, 0.2); 
    text-align: center;
    padding: 20px;
}

/* 4. LOGO STYLING - MASSIVE SIZE */
.logo-container {
    margin-bottom: 0px; 
}

.logo-container img {
    width: 900px; /* This makes it a lot bigger as requested */
    max-width: 95vw; /* Safety for smaller screens */
    height: auto;
    filter: drop-shadow(0px 10px 30px rgba(0,0,0,0.5));
}

/* 5. TYPOGRAPHY - SMALLER MQTT TEXT */
h2 {
    font-family: 'OptimismSans', sans-serif;
    font-size: 50px; /* Reduced so the Arrive logo dwarfs it */
    margin: -15px 0 0 0; /* Tight spacing to the logo */
    text-transform: uppercase;
    letter-spacing: 18px;
    color: #ffffff;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.8);
}

.countdown {
    font-size: 20px;
    margin-top: 50px;
    font-weight: 300;
    letter-spacing: 5px;
    opacity: 0.8;
}

/* 6. FOOTER */
.tempBy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}