


body {
  margin: 0;
  padding: 0;
  background-image:url('./photo/1st_page.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #020024, #090979,#00D4FF); */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}

/* #time{
  align-self:center;
  height: 20%;
  width: 20%;
  background-color: #357ae8;
} */


.container {
  /* margin-top: 3rem; */
  background: white;
  /* padding: 30px; */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  width: 100%;
  /* text-align: center;
  align-self: center; */
  z-index: 1;
  /* opacity: 0.2; */
}
.container2 {
  background-image: url('./photo/bg.jpg'); /* Update the path to your background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  /* max-width: 400px; */
  /* margin: 20px auto; */
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.container:hover{
  /* opacity: 1; */

}

h1 {
  margin-bottom: 20px;
  color: #333;
}

#search-box {
  /* margin-top: 5rem; */
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* margin-bottom: 20px; */
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ccc;
  width: 70%;
}

button {
    /* height: 1rem;
    width:  1rem; */
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  background-color: #5d87b6;
  color: white;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

button:hover {
  background-color: #357ae8;
}

.weather-box {
  margin-top: 20px;
  text-align: left;
}

.weather-box img {
  width: 64px;
  height: 64px;
}

.error {
  color: red;
  margin-top: 15px;
}

.hidden {
  display: none;
}

