body{
    background-color: rgb(78, 78, 87);
    color: azure;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.wrapper {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center horizontally */    
}

.customtime{
    width: 1000px;
    max-width: 900px;
    background-color:  rgb(117, 117, 125);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 6px;
    font-size: 2em;
}

input {
  padding: 8px;
  border: none;
  border-radius: 10px;
  font-size: 23px;
}

button {
  padding: 10px;
  background-color: #4caf50;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 23px;
  text-align: center;
  width: 120px;
  border: none;
}

button:hover {
  background-color: #45a049;
}

.dateInput{
    justify-content: center;
    align-content: center;
}

.container{
    width: 1000px;
    max-width: 900px;
    margin: 0 auto;
    background-color:  rgb(117, 117, 125);
    padding: 20px;
    border-radius: 15px;
}

h1{
    font-size: 2em;
    margin-bottom: 1em;
}

h2{
    font-size: 1.5em;
    margin-bottom: 1em;
}

#countdown{
    display: flex;
    justify-content: space-around;
    gap: 1px;
}
#countdown div{
    text-align: center;
    padding: 30px;
    background: #dad7d7;
    border-radius: 5px;
    
    color: black;
    display: flex;
    flex-direction: column;
}
span{
    font-size: 100px;
}

.progress-container{
    background: white;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

#progress-bar{
    background: rgb(146, 227, 25);
    width: 0%;
    height: 100%;
    transition: width 1s ease-in-out;
    border-radius: 5px;
}

#customtime{
    display: flex;
    justify-content: center;
    align-items: center;
}