.window {
  width: 430px;
  height: 540px;
  position: relative;
  overflow: hidden;
  border-radius: 270px 270px 18px 18px;
  border: 20px solid var(--window-frame);
  background: var(--window-bg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.sun-moon {
  position: absolute;
  right: 82px;
  top: 60px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--sun-moon);
  box-shadow: 0 0 42px var(--sun-moon-shadow);
}

.sun-moon::before{
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: rgba(255, 246, 199, 0.45);
  filter: blur(35px);
  z-index: -1;
}

.star-one {
  top: 150px;
  left: 90px;
}

.star-two {
  top: 305px;
  left: 70px;
}

.hill {
  position: absolute;
  left: -70px;
  bottom: -82px;
  width: 570px;
  height: 220px;
  border-radius: 50% 50% 0 0;
  background: var(--hill-bg);
}

.home-text {
  position: absolute;
  top: 205px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-text h1 {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--chip-text);
  margin-bottom: 14px;
}

.home-text p {
  font-size: 16px;
  font-weight: 500;
  color: var(--sub-text);
  margin-bottom: 38px;
}

.home-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* 기록 남기기 버튼 */
.main-btn {
  width: 150px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: var(--main-button);
  color: var(--main-button-text);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 18px 46px var(--main-button-shadow);
}

.view-btn {
  width: 150px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid var(--input-line);
  background: var(--view-button);
  color: #2b2250;
  font-size: 16px;
  font-weight: 800;
}

#app.theme-day .view-btn {
  background: #4b5f78;
  color: #ffffff;
}

#app.theme-day .view-btn:hover {
  background: #fdfeff;
  color: rgb(41, 33, 33);
}

#app.theme-sunset .view-btn {
  background: linear-gradient(135deg, #bcb7ff, #c696ff);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.65);
}

#app.theme-sunset .view-btn:hover {
  background: #ffffff;
  color: rgb(41, 33, 33);
}

#homePage {
  position: relative;
}

.bottom-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 88%;
  text-align: center;
  color: var(--sub-text);
  font-size: 17px;
  font-weight: 500;
}