@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'poppins', sans-serif;
    background-image: url('./bg.jpeg');
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 4rem;
    margin-top: 5rem;
    font-weight: normal;
}

.countdown-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.big-text {
    font-weight: bold;
    font-size: 6rem;
    line-height: 1;
    margin: 1rem 2rem;
}

.countdown-e {
    text-align: center;
}

.countdown-e span {
    font-size: 1.3rem;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
}

#myProgress {
    width: 90%;
    background-color: #ddd;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;

  }
  
  #myBar {
    width: 1%;
    height: 30px;
    background-color: red;
  }
