/* style.css */

/* Schriftart */
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/* Root-Element */
:root {
  --lightpink:#FFE1F9;
  --lightblue: #C2F5FF;
  --lightgreen: #B8E9BD;
  --lightyellow: #FFF6CC;
  --pink: #F8BFED;
  --blue: #79C9D9;
  --green: #7FBD85;
  --yellow: #FFEC9A;
  --text-color: #38393E;
  --beige: #FFFCF7;
  --lightgrey: #D1D1D1 opacity: 0.5;
  --darkgreen: #4B5E4C;
  --darkblue: #226572;
  --darkyellow: #ECC71A;
  --darkpink: #926A8B;


  --main-font: 'Righteous', regular ;
}

/* Grundlegende Stile */
body {
  font-family: var(--main-font);
  margin: 20px;
  max-width: 100vw;
  line-height: 1.5;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-items-wrapper{
  width: 100vw;
  height: 6vh;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

h1 {
  margin: 20px 0;
  color: var(--text-color);
  font-size: 100px;
  text-align: center;
  font-family: var(--main-font);
  display: flex;
  flex-direction: column;
  line-height: 0.8;
}

h2 {
  margin: 20px 0;
  color: var(--text-color);
  font-size: 80px;
  text-align: center;
  line-height: 1;
  font-family: var(--main-font);
}

h3 {
  margin: 20px 0;
  color: var(--text-color);
  font-size: 50px;
  text-align: center;
  font-family: var(--main-font);
}

h4 {
  margin: 10px 0px 30px 0px;
  color: var(--text-color);
  font-size: 32px;
  text-align: center;
  font-family: var(--main-font);
  line-height: 1;
}

h5 {
  margin: 20px 0;
  color: var(--text-color);
  font-size: 24px;
  text-align: center;
  font-family: var(--main-font);
}

form > div {
  margin-bottom: 1em;
}

label {
  display: inline-block;
  width: 80px;
  font-family: var(--main-font);
}

input[type="email"],
input[type="password"] {
  width: 200px;
  padding: 4px;
}

button {
  padding: 8px 16px;
  cursor: pointer;
}

p {
  margin-top: 1em;
  font-family: var(--main-font);
}