*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
h1{
    font-weight: 700;
    font-size: 40px;
    color: rgb(0, 74, 0);
}
b{
    color: rgba(49, 48, 48, 0.8);
    font-size: 17px;
}
p{
    padding: 30px 0;
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
}
/* Progress bar container */
.progress-bar-container {
    width: 35%;
    background-color: white;
    border-radius: 5px;
    border: 1px solid rgba(97, 90, 90, 0.597);
    overflow: hidden;
    position: relative;
    height: 8px;
    margin: 10px 0;
  }

  /* Loading line (animated progress bar) */
  .progress-bar {
    height: 100%;
    width: 50%; /* Adjust width to represent progress, e.g., 50% */
    background-color: darkgreen;
    transition: width 0.4s ease;
  }

  /* Labels */
  .progress-labels {
    display: flex;
    width: 35%;
    justify-content: space-between;
    font-size: 0.8em;
  }

  /* Notify button styling */
  .notify-btn {
    background-color: white;
    color: darkgreen;
    padding: 10px 20px;
    border: 1px solid darkgreen;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
    margin-top: 30px;
    box-shadow: 2px 2px 2px 2px rgba(97, 90, 90, 0.108);
  }

  .notify-btn:hover {
    background-color: rgb(25, 129, 25);
    color: white;
  }

  .logo-image
  { 
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding-left: 22px;
    margin-bottom: 10px; 
  }