* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(27, 56, 99, 0.432), rgba(12, 51, 46, 0.432)), url('../images/background_photo.jpg');

  }


  .clock-container {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%;
    height: 1000px;
  }

  @media(max-width:480px){
    .clock-container{
      width: 700px;
    }
  }

  .clock-svg {
    position: absolute;
    z-index: 1;
  }

  .clock-hands {
    position: absolute;
    z-index: 2;
  }

  .clock-container h1 {
    font-family: "Source Code Pro", monospace;
    font-weight: 600;
    letter-spacing: 0.5cm;
    position: absolute;
    line-height: 1.2em;
    text-align: center;
    font-size: 80px;
    color: aliceblue;
    z-index: 4;
  }

  .clock-container .start-text {
    font-family: "Source Code Pro", monospace;
    font-weight: 200;
    margin-top: 10%;
    color: aliceblue;
    z-index: 4;
  }

  .clock-container .end-text {
    font-family: "Source Code Pro", monospace;
    font-weight: 200;
    margin-bottom: 10%;
    color: aliceblue;
    z-index: 4;
  }



  .newsletter-input {
    font-size: 20px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid gainsboro;
    padding-left: 10px;
  }

  .newsletter-input:focus {
    outline: none;
  }

  #submit {
    position: relative;
    left: -40px;
    background: transparent;
    top: 3px;
    border: 1px solid transparent;
    font-size: 30px;
    outline: none;
  }

  @media(max-width:480px){
    .container{
       width: 700px;
    }
  }

  .card-body{
    background: transparent;
  }

  .subscribe-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 10px 10px;
}

.subscribe-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.subscribe-container h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.subscribe-container p {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #555;
    outline: none;
    transition: border-color 0.3s;
}

.email-input:focus {
    border-color: #3498db;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.footer {
    margin-top: 20px;
    color: #888;
    font-size: 12px;
}

.footer a {
    color: #3498db;
    text-decoration: none;
}