* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
:root {
  --default-color: #345589;
}
html,
body {
  background-color: var(--default-color);
  font-family: "JetBrains Mono", monospace;
}

#app {
  margin: 0px auto;
  min-width: 400px;
  max-width: 1000px;
  text-align: center;
}

#topbar {
  color: white;
  width: 100%;
  padding: 20px 125px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#topbar h2 {
  color: var(--default-color);
  background-color: white;
  text-align: center;
  text-overflow: nowrap;
  letter-spacing: 15px;
  font-weight: bold;
  padding: 15px;
}

#information {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}
#information strong {
  padding: 0px;
}
#information h3 {
  padding: 0px;
}
.yellow {
  color: yellow;
  margin: 0px 10px;
}
.bg-yellow {
  background-color: rgb(255, 255, 129) !important;
}

#pass-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
}

.pass {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
  width: 100%;
  min-width: 350px;
  max-width: 500px;
  border: 1px solid #dedede;
  font-size: 2.5rem;
  padding: 20px 50px;
  color: var(--default-color);
  cursor: pointer;
}
.pass:hover {
  background-color: rgb(255, 255, 129);
}
.btn {
  padding: 20px 25px;
  margin: 20px 0px;
  border: none;
  border-radius: 0px;
  background-color: rgb(255, 255, 129) !important;
}
.btn:hover {
  background-color: rgb(243, 243, 41) !important;
}
