body {
    margin: 0;
    overflow: hidden; /* Prevents scrollbars */
    font-family: sans-serif;
}

.main_bg{
    position: fixed; /* Fixed to make it fullscreen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.png'); /* Your image here */
    background-size: cover; /* Cover entire area */
    background-position: center; /* Center the image */
    z-index: -1; /* Place behind other content */
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.content {
    text-align: center;
    color: white;
    padding: 20px;
}

.logo {
    max-width: 800px;
    margin-bottom: 20px;
    margin-top: -80px;
}


@media (max-width: 768px) {
    .logo {
      max-width: 300px;
      margin-top: -50px;
    }
  }

.countdown-timer {
    margin-top: 20px;
    font-size: 20px;
}

@media (max-width: 400px) {
    .countdown-timer {
        font-size: 16px;
    }
}