body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  background-color: beige;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s;
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#setPopup {
  position: fixed;
  width: 80%;
  height: 95%;
  z-index: 100;
  display: none;
  background-color: #78909c;
  border-radius: 1em;
}

#alarmPop {
  position: fixed;
  width: 80%;
  height: 80%;
  z-index: 99;
  display: none;
  background-color: #78909c;
  border-radius: 1em;
}

.back {
  position: fixed;
  font-size: 1.5em;
  right: 12%;
  top: 5%;
  padding: 0;
  cursor: pointer;
}

.settings {
  position: fixed;
  right: 4%;
  top: 3%;
  cursor: pointer;
}

.alarm {
  position: fixed;
  right: 6%;
  top: 3%;
  cursor: pointer;
  margin-right: 1.5em;
}

.alarm_title {
  text-align: center;
  font-size: 3em;
}

#alarm-container {
  display: flex;
  justify-content: center;
}

#clock {
  text-align: center;
  font-size: 2em;
}

#buttonHolder {
  display: flex;
  justify-content: center;
  margin-top: 3em;
  justify-content: space-around;
}

#setButton,
#clearButton {
  width: 10em;
  height: 3em;
  background-color: dodgerblue;
  cursor: pointer;
  border-radius: 2em;
  border: black solid 0.1em;
  outline: none;
}

select {
  width: 10em;
  padding: 6px 10px;
  font-size: 0.9rem;
  background-size: 15px 15px;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none; /* 네이티브 외형 감추기 */
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

select:focus {
  border-color: #0094e1;
}

@media (max-width: 920px) {
  #alarm-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.settings_title {
  text-align: center;
  font-size: 3em;
}

.font_title {
  margin-left: 0.5em;
  font-size: 2.2em;
}

#Jua {
  font-family: "Jua", sans-serif;
  cursor: pointer;
  border: 0.1em solid;
  display: inline-table;
  margin-left: 0.5em;
  margin-bottom: 0;
}

#YuseiMagic {
  font-family: "Yusei Magic", sans-serif;
  cursor: pointer;
  border: 0.1em solid;
  display: inline-table;
  margin-left: 0.5em;
  margin-bottom: 0;
}

#Oswald {
  font-family: "Oswald", sans-serif;
  cursor: pointer;
  border: 0.1em solid;
  display: inline-table;
  margin-left: 0.5em;
  margin-bottom: 0;
}

.userName_title {
  margin-left: 0.5em;
  margin-top: 0.5em;
  font-size: 2.2em;
}

.changeName {
  width: 10em;
}

.changeNameBtn {
  margin-left: 2.2em;
}

.bg_title {
  margin-left: 0.5em;
  margin-top: 0.5em;
  font-size: 2.2em;
}

.bgImgbox {
  margin-left: 1em;
  margin-top: 0.2em;
  border: 0.2em solid;
  display: inline-block;
  cursor: pointer;
}

.form,
.greetings {
  display: none;
}

.showing {
  display: block;
  display: flex;
  justify-content: center;
  color: rgb(33, 33, 33);
  font-size: 3em;
  margin: 0.3em;
}

.bgImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  animation: fadeIn.0.5s linear;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.clock__text {
  color: rgb(33, 33, 33);
  font-size: 6em;
  display: flex;
  justify-content: center;
  margin: 0;
  margin-top: 0.5em;
}

.js-form form,
.js-toDoForm {
  display: flex;
  justify-content: center;
  color: black;
}

.js-toDoList {
  overflow-y: scroll;
  -ms-overflow-style: none;
  padding: 0;
}
::-webkit-scrollbar {
  display: none;
}
input {
  background: none;
  appearance: none;
  border: 0;
  font-size: 22px;
  color: rgb(33, 33, 33);
  font-weight: normal;
  border-bottom: 3px solid white;
  width: 15em;
  height: 2em;
  margin: 1em;
  text-align: center;
}

input::placeholder {
  color: rgb(33, 33, 33);
  font-weight: bolder;
  text-align: center;
}

input:focus,
input:active {
  outline: none;
}

.js-weather {
  display: flex;
  justify-content: left;
  color: #78909c;
  font-size: 1.5em;
  font-weight: 400;
}

ul {
  list-style-type: none;
}

li {
  list-style: none;
  display: flex;
  font-weight: lighter;
  font-size: 1.25em;
}

.delBtn {
  background: none;
  border: 0;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.toDos {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

@media (max-width: 400px) {
  .settings_box {
    height: 550px;
    overflow-y: scroll;
    -ms-overflow-style: none;
  }
  .clock__text {
    font-size: 5em;
  }
}
