
/* Reset and Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('../images/bg.jpeg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.0);
   /* backdrop-filter: blur(5px); */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 10%;
}

.logo {
    font-size: 5rem;
    font-weight: 800;
    color: #000;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 80px;
}

.countdown-box span {
    font-size: 3rem;
    font-weight: bold;
}

.countdown-box label {
    font-size: 1rem;
    color: #ddd;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 1rem;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
