@font-face {
  font-family: 'MankSans';
  src: url('./font/MankSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: white;
  height: 100%;
  font-family: 'MankSans', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1 {
  color: #78866B; /* vert kaki */
  font-size: 10vw;
  margin: 0;
}

.footer {
  position: absolute;
  bottom: 60px;
  font-size: 1.2rem;
}

.footer a {
  color: #78866B;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}