* {
  margin: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

a {
  color: #39bb2f;
  font-weight: bold;
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg,#ffd1d8,#7553c9);
  color: #000000;
  text-align: center;
  padding: 20px;
}

#Title {
  color: black;
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  text-decoration: underline;
  margin-bottom: 20px;
}

#text {
  font-family: "Nanum Pen Script", cursive;
  font-size: 25px;
  margin-bottom: 20px;
}

.navlink {
  text-decoration: none;
  color: #2E382E;
  font-weight: 800;
  font-family: "Playwrite BE VLG", cursive;
}

#active {
  background-color: #f2bac9;
  padding: 5px;
  border-radius: 5px;
  border-style: dashed;
}

#inactive:hover {
  background-color: #ADBDFF;
  padding: 5px;
  border-radius: 5px;
}

#separator {
  font-weight: 800;
  font-family: "Playwrite BE VLG", cursive;
  font-size: 25px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: #9883E5;
  border-radius: 5px;
  border-style: ridge;
  border-color: black;
  padding: 5px;
}

.password-boxes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.digit-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  border: 2px solid #000;
  border-radius: 5px;
}

button {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  background: #39bb2f;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #2d8c24;
}

.download-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 20px;
  font-family: 'Black Ops One', cursive;
  color: white;
  background-color: #5c67f2;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #4a54c2;
}
