/* Reset and base styles */
@font-face {
    font-family: 'SuisseIntl';
    src: url('SuisseIntl-Regular-WebS.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SuisseIntl', 'Arial', sans-serif;
    line-height: 125%;
    letter-spacing: -0.5%;
    color: #fff;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


body header {
    max-width: 500px;
}

body header p {
    margin-bottom: 1rem;
    width: 100%;
}

a {
 text-decoration: none;
 color: #fff;
}

a:hover {
    color: #ffffffbf;
}

footer {
    width: 100%;
    max-width: 500px;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(4%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fadeInUp-animation {
  animation: 1.5s fadeInUp;
}