@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Frank Ruhl Libre", serif;
  color: white;
  background: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 100%);
  font-size: 100pt;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.line {
  border: solid 3px white;
  width: 100%;
  margin: 10px;
}

.quote .content {
  font-size: 80px;
}

.hidden {
  display: none;
}

#name {
  font-size: 80pt;
}

.fade-in {
  animation: fadein 2s;
}

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

#login-form input {
  border: 1px solid gray;
  border-radius: 4px;
  background: transparent;
}

#login-form button {
  width: 50px;
  height: 20px;
  border: none;
  background-color: #4686ff;
  color: white;
  border-radius: 4px;
}

#todo-list > li > span {
  font-size: medium;
}
