@import "./responsive.css";

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: white;
  height: 100%;
}

button {
  background: transparent;
  border-radius: 40px;
  color: white;
  cursor: pointer;
}

.hidden {
  display: none;
}

.content {
  position: relative;
  text-align: center;
  top: 10%;
  background: rgba(0, 0, 0, 0.3);
  margin: auto;
  width: 30%;
  border-radius: 10px;
  padding-top: 50px;
}

img {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Timer */

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #14ff39, #ffeb3b, #ff00e0);
  width: 20%;
  height: 100px;
  margin: auto;

  border-radius: 10px;
  cursor: default;
  animation: animate 1.5s linear infinite;
  transform: translateY(50%);
}

.display {
  background-color: blue;
  background-color: #180647;
  height: 90%;
  width: 95%;
  border-radius: 6px;
  z-index: 999;
}

.wrapper span {
  position: absolute;
  color: white;
  height: 100%;
  width: 100%;
  background: inherit;
  border-radius: 10px;
}

.wrapper span:first-child {
  filter: blur(5px);
}
.wrapper span:last-child {
  filter: blur(10px);
}

#clock {
  line-height: 100px;
  font-size: 80px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #14ff39, #ffeb3b, #ff00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate 1.5s linear infinite;
  text-align: center;
}

@keyframes animate {
  100% {
    filter: hue-rotate(360deg);
  }
}

/* User Name */
.username_content {
  display: flex;
  justify-content: center;
}

.username_delete {
  transform: translate(10%, 30%);
}

/* Form */
form {
  padding-top: 10px;
}
#delete {
  margin-top: 10px;
}

.input_text {
  width: 20%;
  border: 0px;
  background: transparent;
  border-bottom: 2px solid silver;
  color: rgba(0, 0, 0, 0.5);
}

.input_text:focus {
  color: #ffffff;
}

.input_login {
  display: none;
}

/* Weather */
#weather {
  position: absolute;
  top: 0%;
  right: 0%;
}

/* Quotes */
#quote {
  display: flex;
  flex-direction: column;
  position: static;
  padding-top: 20%;
  padding-bottom: 10px;
}

/* To Do */

#todo-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

#todo-list li {
  margin-bottom: 15px;
}

#todo-list button {
  margin-right: 40px;
}
