* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
}

.countdown-wrapper {
    width: 100%;  
    height: 300px;
    background-color: #f39200;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-wrapper h1 {
    margin-bottom: 40px;
    font-size: 48px;
}

.countdown {
    display: flex;
    gap: 60px;
}

.unit {
    text-align: center;
}

.number {
    font-size: 64px;
    font-weight: bold;
    display: block;
}

.label {
    font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
    display: block;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .countdown {
        gap: 0px;
    }

    .number {
        font-size: 30px;
    }

    .label {
      font-size: 15px;
      font-weight: bold;
      margin-top: 8px;
      display: block;
  }

    .countdown-wrapper h1 {
        font-size: 32px;
        text-align: center;
    }
}
