:root {
  --main-bg-color: #2e3436;
  --font-color: #f6f5f4;
  --font-family: "BeVietnam", "Verdana", Sans-serif
}

@font-face {
  font-family: BeVietnam;
  src: url(/files/BeVietnam-Regular.woff2);
  font-style: normal;
  font-weight: 400;
}

*, ::after, ::before {
  box-sizing: border-box;
}

body {
  background-color: var(--main-bg-color);
  color: var(--font-color);
  font-family: var(--font-family);
  min-height: 100vh;
  margin: 0;
}

h1, h2 {
  margin: 0;
}

/* APP LAYOUT */
#svelte {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  min-height: 100vh;
  margin: 0;
}

/* GENERAL */
.section {
  margin-top: 40px;
}

.headline {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  font-size: 26px;
}

.paragraph {
  font-size: 20px;
}

.link {
  position: relative;
  color: var(--font-color);
  text-decoration: none;
  display: inline-block !important;
}

.link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: var(--font-color);
}
