@import "css/reset.css";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;700;900&display=swap");
@import "css/greeting.css";
@import "css/date.css";
@import "css/quote.css";
@import "css/calinder.css";
@import "css/todo.css";
@import "css/cal.css";
@import "css/bgm.css";
* {
  box-sizing: border-box;
}
body {
  font-family: "Nunito", sans-serif;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  height: 800px;
  width: 1000px;
  display: flex;
  border: 1px solid gray;
  border-radius: 15px;
  box-shadow: 0px 0px 3px 0px gray;
}
body img {
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
}

.changebg {
  border: 1px solid black;
  background: transparent;
  border-radius: 10px;
  padding: 2px 15px;
  margin-top: 10px;
  font-weight: bold;
}
.changebg:hover {
  cursor: pointer;
}

.hidden {
  display: none;
}
.left {
  width: 60%;
}
.right {
  width: 40%;
}

.todo-box {
  padding: 30px;
  width: 100%;
}

.todo-box input {
  width: 100%;
}

.snowflake {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  top: -1px;
}

@keyframes fall {
  0% {
  }
  100% {
    transform: translateY(93vh);
    opacity: 0;
  }
}
