:root {
  --area501-yellow: #ffcf21;
  --area501-grey: #25303b;
  --white: #ffffff;
}

/* Fonts */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/poppins-v21-latin-300.eot');
  src: url('/fonts/poppins-v21-latin-300.eot?#iefix') format('embedded-opentype'),
       url('/fonts/poppins-v21-latin-300.woff2') format('woff2'),
       url('/fonts/poppins-v21-latin-300.woff') format('woff'),
       url('/fonts/poppins-v21-latin-300.ttf') format('truetype'),
       url('/fonts/poppins-v21-latin-300.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v21-latin-regular.eot');
  src: url('/fonts/poppins-v21-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('/fonts/poppins-v21-latin-regular.woff2') format('woff2'),
       url('/fonts/poppins-v21-latin-regular.woff') format('woff'),
       url('/fonts/poppins-v21-latin-regular.ttf') format('truetype'),
       url('/fonts/poppins-v21-latin-regular.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins-v21-latin-500.eot');
  src: url('/fonts/poppins-v21-latin-500.eot?#iefix') format('embedded-opentype'),
       url('/fonts/poppins-v21-latin-500.woff2') format('woff2'),
       url('/fonts/poppins-v21-latin-500.woff') format('woff'),
       url('/fonts/poppins-v21-latin-500.ttf') format('truetype'),
       url('/fonts/poppins-v21-latin-500.svg#Poppins') format('svg');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v21-latin-600.eot');
  src: url('/fonts/poppins-v21-latin-600.eot?#iefix') format('embedded-opentype'),
       url('/fonts/poppins-v21-latin-600.woff2') format('woff2'),
       url('/fonts/poppins-v21-latin-600.woff') format('woff'),
       url('/fonts/poppins-v21-latin-600.ttf') format('truetype'),
       url('/fonts/poppins-v21-latin-600.svg#Poppins') format('svg');
}

/* Layout */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--area501-grey);
  color: var(--white);

  display: grid;
  grid-template-rows: 1fr auto; /* Main & Footer */
  min-height: 100vh;

  text-align: center;
}

.wrapper {
  max-width: 600px;
  padding: 2rem;
  margin: auto; /* zentriert den Content vertikal */
}

.logo {
  max-width: 150px;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.link-button {
  display: inline-block;
  margin: 1.5rem 0;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid var(--white);
  color: var(--white);
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-button:hover {
  background-color: var(--white);
  color: var(--area501-grey);
}

.small {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Footer */
.page-footer {
  width: 100%;
  background: var(--area501-grey);
  padding: 2rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  bottom: 0;
  left: 0;
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.page-footer__bottom {
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  color: #aaaaaa;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.page-footer__bottom p {
  margin: 0;
}
