@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');

body {
  font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: linear-gradient(32deg, rgba(28,138,255,1) 0%, rgba(29,139,255,1) 42%, rgba(121,195,243,1) 100%);
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btn {
  cursor: pointer;
}

body {
  color: #34495e;
}
.clicked {
  color: #7f8c8d;
}

.form,
.greetings {
  display: none;
}

.showing {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: fadeIn 0.5s linear;
}

.clock > h1 {
  color: white;
  font-size: 130px;
  font-weight: 600;
  margin: 30px;
}

.js-form {
  margin-bottom: 30px;
}

.js-greetings {
  color: white;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}

.js-toDoList {
  margin: 10px;
}

header {
  width: 100%;
  height: 5rem;
  position: absolute;
  top: 0;
}

.weather_box {
  margin: 1rem;
  width: 6rem;
  padding: 1rem;
  backdrop-filter: saturate(200%) blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: black;
}

.weather_box > h4 {
  font-size: 1rem;;
  margin-bottom: .5rem;
  font-weight: 600;
}

.weather_box > span {
  font-size: .8rem;
  font-weight: 500;
}

ul {
  color: white;
  width: 10rem;
  display: flex;
  flex-direction: column;
  align-items:center;
}

li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break:break-all;
  margin-bottom: 1rem;
}

ul > li > span {
  padding: 3px;
}

ul > li > button {
  border: none;
  border-radius: 50%;
  height: 1.6rem;
  width: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}