* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url(../assets/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f7f7f7;

  display: flex;
  justify-content: center;
  align-items: center;

  height: 100vh;
}

main {
  padding: 2rem;
  backdrop-filter: blur(30px);
  border-radius: 10px;
  box-shadow: 0 10px 20px 5px #000;

  max-width: 600px;
  width: 100%;
  height: 400px;
}

main > h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 0.1rem 0.1rem #000;
}

main #search-form form {
  display: flex;
  gap: 0.7rem;

  width: 100%;
  margin-bottom: 1rem;
}

main #search-form input {
  flex: 1;
  height: 32px;
  border-radius: 5px;
  border: none;
  padding: 0 10px;
  font-size: 16px;
}

main #search-form button {
  cursor: pointer;
  background-color: none;
  color: #333;
  border: none;
  border-radius: 5px;
  font-weight: 500;

  padding: 0rem 1rem;
  height: 32px;
}

main #search-form button:hover {
  transform: scaleY(1.01);
  transition: 0.3s;
}

main #time-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

main #time-info .time-data {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0.2rem;
  text-shadow: 0.1rem 0.1rem #000;
}

main #time-info .time-data span {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0.1rem 0.1rem #000;
}
