
/* Montserrat */
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/WOFF/Montserrat-Thin.woff2') format('woff2'),
         url('/fonts/WOFF/Montserrat-Thin.woff') format('woff');
  }
  
/* Cayano Pro */
@font-face {
    font-family: 'Cayano Pro';
    src: url('./fonts/cayano-pro.woff2') format('woff2');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    /* Farben */
    --color-peach: #fcd8b8;
    --color-gray: #a6a6a6;
    --color-peach-dark: #fbcca2;
    --color-gray-dark: #3c3c3c;

    /* Schriftarten */
    --font-base: 'Montserrat', sans-serif;
    --font-heading: 'Cayano Pro', sans-serif;

    /* Abstände */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;

    /* Maximalbreiten */
    --max-width: 600px;
}

body {
  height: 100vh;
  font-family: var(--font-base);
  font-weight: 100;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
footer {
    background-color: white;
}
.container {
  max-width: 1200px;
  animation: fadeIn 1s ease-in-out;
}

.one-column {
    height: 100%;
    width: 100%;
    max-width: 700px;
    margin: auto;
    flex-direction: column;
    padding: 2rem;
}

img.logo {
  max-width: 50%;
  min-width: 300px;
  height: auto;
  margin-bottom: 10%;
  margin-top: 10%;
}

h1 {
  font-size: clamp(1.5rem, 0.87vw + 1.5rem, 2.2rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--color-peach-dark);
}
h2 {
  font-size: clamp(1.5rem, 0.87vw + 1.5rem, 2.2rem);
  text-transform: uppercase;
  font-weight: 100;
  margin-bottom: 1rem;
    color: var(--color-gray);
  }
  h3 {
    font-size: clamp(1.0rem, 0.87vw + 1.0rem, 1.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-gray);
    text-transform: uppercase;
  }

p {
    font-size: clamp(0.8rem, 0.87vw + 0.8rem, 1.5rem);
    font-weight: 100;
  line-height: 1.6;
  color: var(--color-gray-dark);
}
a {
    color: var(--color-peach-dark);
}
p, a {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
small {
    display: block;
    margin-top: 2rem;
    color: var(--color-peach-dark);
  }

.small-link {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.8rem;
  color: var(--color-peach-dark);
  background-color: white;
  padding: 0.5em;
  text-decoration: none;
  font-weight: 900;
}

.small-link:hover {
  color: #333;
}

.small-link:active {
    color: var(--color-peach-dark);
  }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
