* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('/fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Plus Jakarta Sans 700';
  src: url('/fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-size: normal;
}
  
body {
  height: 100vh;
  font-family: "Inter", sans-serif;
  background-color: #f7f5f2;
  color: #3A302A;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
main {
  text-align: center;
}
  
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}
  
p {
  font-size: 1.1rem;
  color: #3A302A;
  margin-bottom: 0.5rem;
}

  
p.sub {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  color: #B7A3B5;
  margin-top: 1rem;
 }

.logo_teaser {
  display: block;
  margin: 1rem auto;
  max-width: 250px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #D8A1A7;
  display: flex;
  align-items: center;
  justify-content:center;
  height: 30px;
  padding-left: 20px;
}

footer p {
  font-size: 0.6rem;
  color: white;
  margin: 0;
}