:root {
  /* ==========================================================================
    Fraunhofer Base Color Tokens (LCh Scale)
  ========================================================================== */
  --fhg-color-light-200: #e6f5f1;          /* Super light green tint for backgrounds */
  --fhg-color-light-100: #43b899;          /* Light brand green (+12 LCh) */
  --fhg-color: #12977a;               /* Core FhG Green (Color code 28) */
  --fhg-color-dark-100: #008a6e;           /* Darker green (-5 LCh) for hovers */
  --fhg-color-dark-200: #007d61;           /* Deep green (-10 LCh) for active clicks */
  --fhg-color-btn-foreground: #fff;        /* Text color on brand elements */
}

@font-face {
  font-family: 'Source Sans Pro Light';
  font-style: normal;
  font-weight: 300;
  src: local('Source Sans Pro Light'), url(../fonts/Source_Sans_Pro_Light.woff2) format('woff2');
}

body {
  background-color: #fff;
}

p {
  margin: 10px;
}

a {
  color: var(--fhg-color);
}

a:hover {
  /* Make the links the corporate color */
  text-decoration: none;
  color: #000;
}

#logo {
  width: 400px;
}

.fullscreen_center {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  max-width: 768px;
  color: #202020;
  margin: auto;
  animation: fadein 4s;
  font-family: "Source Sans Pro Light";
  font-size: 18px;
}

.title {
  font-size: 45px;
  letter-spacing: -2px;
}

.infotext {
  font-size: 20px;
}

.links a {
  margin: 0 10px;
}

.actions {
  margin: 30px 10px;
}

.action-button {
  margin: 10px;
  background-color: #FFFFFF;
  border: 0;
  border-radius: .5rem;
  box-sizing: border-box;
  color: #111827;
  font-weight: 600;
  line-height: 1.25rem;
  padding: .75rem 1rem;
  text-align: center;
  text-decoration: none #D1D5DB solid;
  text-decoration-thickness: auto;
  box-shadow: 0 1rem 2rem 0 rgba(3, 3, 3, .16), 0 0 0.5rem 0 rgba(3, 3, 3, .1);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.action-button:hover {
  background-color: rgb(249,250,251);
}

.action-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.action-button:focus-visible {
  box-shadow: none;
}
