/* FONTS  macondo swash caps*/
/* im-fell-english-sc-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "IM Fell English SC";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("../fonts/im-fell-english-sc-v16-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/**
	* 1. Globale Einstellungen für die gesamte Website
	*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
img,
video {
  max-width: 100%;
  height: auto;
}
figure,
blockquote {
  margin-right: 0;
  margin-left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

body {
  margin: 0 auto;
  padding: 0;
  font-family: IM Fell English SC;
  font-size: larger;
  background-color: #212121;
  color: #fff;
  margin-top: 7rem;
display: flex;
justify-content: center;
}

.container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 6rem;
}
.con {
    position: absolute;
    top:10%;
    margin: 0 auto;
}

.login-box {
  font-size: x-large;
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h2,
h1 {
  margin-top: 0;
  text-align: center;
  background-color: #f3ec78;
  background-image: linear-gradient(#f8b700, #f3ec78);
  background-size: 100%;
  -webkit-background-clip: text;
  /* -moz-background-clip: text; */
  -webkit-text-fill-color: transparent;
  /* -moz-text-fill-color: transparent; */
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="password"] {
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4caf50;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

.out {
  white-space: pre-line;
}
