@import "normalize.css";
@import "login.css";
@import "todo.css";

* {
  box-sizing: border-box;
}
.hidden {
  display: none;
}
.hidden__opacity {
  opacity: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: white;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  position: relative;

  padding-top: 250px;
}

.weather {
  position: fixed;
  right: 12px;
  top: 10px;
  font-style: italic;
  font-size: 0.9em;
}
.weather__city {
  font-size: 1.3em;
  margin-right: 5px;
}
.weather__icon {
  font-size: 0.9em;
  margin-right: 4px;
}

.clock {
  font-size: 140px;
  font-weight: 500;
  margin-bottom: 10px;
}
.box {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.box img {
  position: relative;
  width: 100vw;
  height: 100%;
}
