input[type="password"] {
  background: #000;
  color: deeppink;
  border: 2px solid deeppink;
  border-radius: 8px;
  font-family: "Doto", sans-serif;
  padding: 12px 16px;
  font-size: 1rem;
  outline: none;
  font-weight: bold;
}

input[type="button"],
button,
input[type="submit"] {
  font-family: "Doto", sans-serif;
  background: #000;
  color: deeppink;
  border: 2px solid deeppink;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

input[type="button"]:hover,
button:hover,
input[type="submit"]:hover {
  background: deeppink;
  color: #000;
  border-color: #000;
}
@font-face {
  font-family: "Doto";
  src: url("fonts/Doto-VariableFont_ROND-wght.ttf") format("truetype");
  font-weight: 100 900; /* Variable Font: Gewicht von 100 bis 900 */
  font-style: normal;
}

/* Reset & stabile Basis */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Doto", sans-serif;
  background: black;
  color: white;
}

/* Fullwidth Container */
#main_div {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  height: 100vh;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0.25rem dotted deeppink;
  border-radius: 0.5rem;
  box-sizing: border-box;
}

h1 {
  margin: 0;
  font-size: 4rem;
  text-align: center;
  font-family: "Doto", sans-serif;
  color: deeppink;
}

p {
  font-size: 1rem;
  font-weight: bold;
}
