body {
  font-family: "Victor Mono", monospace;
  background-color: white;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  filter: drop-shadow(8px 8px 0px #000);
  padding: 30px 40px 30px 40px;
  border: 4px solid #000;
  width: 250px;
}

.card h1 {
  margin: 0;
  font-size: 42px;
  font-family: "DM Mono", monospace;
  font-weight: 900;
}

.form-container {
  margin-top: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="submit"] {
  margin-top: 15px;
  background: #fff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px 0px #000;
  cursor: pointer;
}

input[type="submit"]:active {
  transform: translateY(4px);
  box-shadow: 1px 2px 0px 0px #000;
}


nav {
  background-color: #ffed00;
  position: fixed;
  /* Set the navbar to fixed position */
  top: 0;
  /* Position the navbar at the top of the page */
  width: 100%;
  /* Full width */
  overflow: hidden;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 4px solid black;
}

li {
  float: left;
}

li a {
  display: block;
  color: black;
  font-size: x-large;
  font-weight: bolder;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: black;
  color: white;
}


input[type="submit"][name="signup"] {
  background-color: yellow;
}