@font-face {
  font-family: "KyoboHandwriting2021sjy";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2212@1.0/KyoboHandwriting2021sjy.woff2")
    format("woff2");
  font-family: "GangwonEduPowerExtraBoldA";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEduPowerExtraBoldA.woff")
    format("woff");
  font-family: "GangwonEdu_OTFBoldA";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
}

* {
  font-family: "GangwonEdu_OTFBoldA";
}
.hidden {
  display: none;
}

:root {
  --main-color: #4c61c0;
  --text-color: #07124c;
}

body {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--text-color);
  width: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  opacity: 0.5;
  z-index: 0;
}

#login-form {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin-top: 50px;
  text-align: center;
  z-index: 3;
}

input:focus {
  color: var(--text-color);
}

#login-form input:first-child {
  width: 500px;
  height: 50px;
  font-size: 30px;
  border-radius: 15px;
  outline: none;
  padding-left: 20px;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  box-shadow: 2px 3px 7px 1px var(--main-color);
}

#login-form input::placeholder {
  padding: 5px 5px;
  color: var(--text-color);
  font-size: 20px;
  opacity: 1;
}

#login-form input:first-child:focus::placeholder {
  color: transparent;
}

#login-form input:last-child {
  width: 55px;
  height: 55px;
  border-radius: 60px;
  margin-left: 10px;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  box-shadow: 2px 3px 7px 1px var(--main-color);
  font-size: 15px;
}

#login-form input:last-child:active {
  border-top: none;
  border-left: none;
  border-right: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  box-shadow: 0px 0px 5px 0px var(--main-color);
}

#greeting {
  position: absolute;
  top: 5%;
  left: 16%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  text-align: center;
  z-index: 2;
}

#clock {
  position: absolute;
  top: 17%;
  left: 42%;
  font-size: 90px;
  color: #273850;
  z-index: 3;
}

.clock {
  border-radius: 50%;
  border: 3px solid var(--main-color);
  width: 400px;
  height: 400px;
  left: 39.5%;
  top: 7%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.5;
  position: absolute;
  z-index: 2;
}

.lineHour {
  width: 12px;
  height: 100px;
  border-radius: 5px;
  background: var(--text-color);
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 5px);
  transform-origin: bottom;
}

.lineMin {
  width: 6px;
  height: 150px;
  border-radius: 3px;
  background: var(--text-color);
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 2px);
  transform-origin: bottom;
}

.lineSec {
  width: 2px;
  height: 200px;
  background: var(--main-color);
  position: absolute;
  top: calc(50% - 200px);
  left: calc(50% - 1px);
  transform-origin: bottom;
}

#todo-form {
  position: absolute;
  top: 68%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  text-align: center;
  z-index: 2;
}

.input-todo {
  text-align: center;
  width: 1000px;
  height: 50px;
  font-size: 30px;
  border-radius: 15px;
  outline: none;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid var(--main-color);
  box-shadow: 0px 4px 10px 1px var(--main-color);
}

.input-todo::placeholder {
  padding: 5px 5px;
  color: var(--text-color);
  font-size: 20px;
  opacity: 1;
}

.input-todo:first-child:focus::placeholder {
  color: transparent;
}

#todo-list {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -7%);
  font-size: 50px;
  text-align: center;
  list-style: none;
}

.list-box {
  width: 1500px;
  height: 350px;
  position: absolute;
  top: 72%;
  left: 11%;
  overflow-y: auto;
  z-index: 2;
}

.list-box::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
}
.list-box::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 10px;
}
.list-box::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--main-color);
  box-shadow: 0px 0px 5px var(--main-color);
}

#dim-container {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  opacity: 0;
  width: 1900px;
  height: 1070px;
  z-index: 2;
}

#dimmed {
  font-size: 40px;
  height: 200px;
  color: #627bdf;
}

button {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  margin-bottom: 15px;
  background-color: transparent;
  position: relative;
  bottom: 10px;
  border-top: 3px solid var(--main-color);
  border-left: 3px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  color: var(--main-color);
  font-size: 35px;
}

#quote {
  position: absolute;
  top: 52%;
  left: 51%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 50px;
  z-index: 1;
}

#quote span:last-child {
  padding-top: 20px;
}

#weather {
  position: absolute;
  top: 7%;
  left: 92%;
  width: 300px;
  transform: translate(-50%, -50%);
  font-size: 30px;
  text-align: center;
  z-index: 1;
  color: var(--text-color);
}
