* {
  padding: 0;
  margin: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes skeleton-gradient {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }

  50% {
    background-color: rgba(255, 255, 255, 0.5);
  }

  100% {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@keyframes skeleton-gradient {
  0% {
    background-color: rgba(255, 255, 255, 0.1);
  }

  50% {
    background-color: rgba(255, 255, 255, 0.5);
  }

  100% {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
  }
}

.hidden {
  display: none;
}

.wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  font-size: 16px;
  font-family: "Schibsted Grotesk", sans-serif;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.main {
  padding-left: 10vw;
}

.quote {
  animation: fadeIn 2s forwards;
}

.clock {
  font-size: 10em;
  font-weight: 400;
  animation: fadeIn 2s forwards;
}

.greeting {
  font-size: 3em;
  animation: fadeIn 2s forwards;
}

.login {
  height: 65px;
}

.login input:first-child {
  width: 500px;
  height: 50px;
  font-size: 3em;
  color: #fff;
  background-color: transparent;
  border-style: none;
  border-radius: 5px;
}

.login input:focus {
  outline: none;
}
.login input::placeholder {
  color: #fff;
  opacity: 0.7;
}

.form input:focus {
  outline: none;
}
.form input::placeholder {
  color: #fff;
  opacity: 0.7;
}

.weather {
  display: flex;
  align-items: center;
  width: 300px;
  height: 35px;
  margin-top: 15px;
  padding: 0 10px 0 5px;
  color: #fff;
  font-weight: 400;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.weather img {
  width: 35px;
  animation: fadeIn 1s forwards;
}

.weather span {
  animation: fadeIn 1s forwards;
}

.weather span:last-child {
  margin-left: 5px;
}

.weather__loading {
  width: 15px;
  height: 15px;
  margin: auto;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #c4c4c4;
  border-radius: 100%;
  animation: spin 1s infinite linear;
}

.weather__loading--background {
  -webkit-animation: skeleton-gradient 1.8s infinite ease-in-out;
  animation: skeleton-gradient 1.8s infinite ease-in-out;
}

.todo {
  margin-right: 25px;
  padding: 10px 25px 20px 25px;
  color: #fff;
  background-color: rgba(150, 150, 150, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.todo__title {
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
}

.todo input {
  width: 200px;
  height: 30px;
  font-size: 1em;
  color: #fff;
  background-color: transparent;
  border-style: none;
}
.todo input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.todo button {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.todo__list {
  max-width: 205px;
  max-height: 150px;
  margin-bottom: 15px;
  overflow-y: scroll;
  word-break: keep-all;
}

.todo__list li {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  animation: fadeIn 1s forwards;
  cursor: pointer;
}

.todo__list--finished {
  text-decoration: line-through;
}
