.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.nova-round-regular {
  font-family: "Nova Round", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #669BBC;
  background-size: cover;
  color: #fdf0d5;
  font-family: "Nova Round", sans-serif;
  text-align: left;
  cursor: url("./images/cursor.png"), auto;
}

body.dark-mode {
  background-color: #1a1a1a; 
}

#dark-mode-toggle{
  background-color: transparent;
  font-family: "Nova Round", sans-serif;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
}

h1{
    font-size: xxx-large;
}

#header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#paragraph-text {
  margin: 10px 0px 60px 0px ;
  align-items: center;
  text-align: center;
}

#generating-btn {
  background-color: #FDF0D5;
  padding: 15px 30px;
  font-family: "Archivo Black", sans-serif;
  font-size: 110%;
  border: 3px solid black;
  border-radius: 10px;
  color: #C1121F;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: all 0.1s ease;
  box-shadow: 0 4px 0 #000;
}

#generating-btn:active {
  transform: translateY(4px);
  box-shadow: 0px 2px 1px #000;
}


hr.solid {
  border-top: 0.5px solid #FDF0D5;
  max-width: 700px;
}

.password-section{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

#textBoxOne{
  background-color: #161818;
  font-family: 'Courier New', Courier, monospace;
  border: 1.5px solid #FDF0D5;
  width: 190px;
  height: 50px;
  text-align: center;
  padding: 4px 2px;
  border-radius: 10px;
  cursor: pointer;
}
#textBoxOne:hover{
  background-color: #C1121F;
  color: white;
  border: 1.5px solid #FDF0D5;
}

#textBoxTwo{
  background-color: #161818;
  font-family: 'Courier New', Courier, monospace;
  border: 1.5px solid #FDF0D5;
  width: 190px;
  height: 50px;
  text-align: center;
  padding: 4px 2px;
  border-radius: 10px;
  cursor: pointer;
}
#textBoxTwo:hover{
  background-color: #C1121F;
  color: white;
  border: 1.5px solid #FDF0D5;
}

#signature{
  text-align: center;
  margin-top: 170px
}
