#frame,
#frame * {
  box-sizing: border-box;
}

.light {
  --bg-color: #ffffff;
  --text-color: #000000;
  --1st-color: #d9d9d9;
}

.dark {
  --bg-color: #272727;
  --text-color: #ffffff;
  --1st-color: #141414;
}

#frame {
  background: var(--bg-color);
  height: 832px;
  position: relative;
  overflow-y: auto;
  transition: background 0.3s ease-in;
}

.nav-backgrnd {
  background: var(--1st-color);
  width: 100%;
  height: 90px;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: background 0.3s ease-in;
}

.title {
  color: var(--text-color);
  text-align: center;
  font-family: "Inter-Black", sans-serif;
  font-size: 128px;
  font-weight: 900;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 339px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in;
}

.navbar {
  width: 429px;
  height: 50px;
  position: absolute;
  right: 96px;
  top: 20px;
}
.home {
  color: var(--text-color);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  left: 0px;
  top: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in;
}
.status {
  color: var(--text-color);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  left: 92px;
  top: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in;
}
.about {
  color: var(--text-color);
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  left: 191px;
  top: 10.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease-in;
}

.loginbtn {
  padding: 10px 40px 11px 39px;
  width: 144px;
  height: 50px;
  position: absolute;
  left: 285px;
  top: 0px;
  overflow: hidden;
}
.rectangle-2 {
  background: #5865f2;
  border-radius: var(--corner-medium, 12px);
  border-style: solid;
  border-color: #5865f2;
  border-width: 1px;
  width: 144px;
  height: 50px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.login {
  color: #ffffff;
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  left: 39px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightSwitch {
  position: absolute;
  width:35px;
  height:35px;
  right: 34px;
  top: 27px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
