html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: lightblue;
}

.container {
  width: 100%;
  height: 590px;
  display: flex;
  justify-content: center;
  background-color: lightblue;
}


.top {
  background-color: lightblue;
  display: flex;
  justify-content: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-top: 20px;

}


#results {
  font-size: 30px;
  margin-top: 20px;
  color: rgb(0, 0, 0);
  animation: bounceIn 1.8s ease-in-out;
  font-weight: bold;
}

button {
  width: 150px;
  height: 35px;
  background-color: #fff;
  border-radius: 8px;
  color: #212121;
  text-decoration: none;
  font-size: 25px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #3fcec4, #764ba2);
  color: white;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(15, 56, 57, 0.092);
  transition: all 0.4s ease;

}

button:hover {
  background-color: #212121;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}


input[type="text"] {
  padding: 10px 15px;
  border: none;
  border-radius: 15px;
  border-color: #1c1c1c;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 200px;
  font-size: 16px;
}

.box {
  width: 450px;
  height: 70%;
  border-radius: 12px;
  background-color: lightblue;
  animation: fadeIn 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-items: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
}

/* socail media ---->>>>--------->>>>> */

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: #f0f4fa;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #ccc;
}

.footer a {
  color: #1c1c1c;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer a:hover {
  transform: scale(1.2);
}




/* responsive css media queries  ---->>>>--------->>>>> */



@media (max-width: 600px) {
  body {
    padding: 20px;
    font-size: 16px;
  }

  #clock {
    font-size: 2.5rem;
    padding: 15px 20px;
    margin-top: 15px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .footer {
    height: auto;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
  }

  .footer a {
    font-size: 20px;
  }

  nav {
    top: 10px;
    left: 10px;
  }
}