@font-face {
  font-family: 'Kollektif Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Kollektif Regular'), url('./fonts/Kollektif.woff') format('woff');
}

@font-face {
  font-family: 'Kollektif Italic';
  font-style: italic;
  font-weight: normal;
  src: local('Kollektif Italic'), url('./fonts/Kollektif-Italic.woff') format('woff');
}

@font-face {
  font-family: 'Kollektif Bold';
  font-style: normal;
  font-weight: bold;
  src: local('Kollektif Bold'), url('./fonts/Kollektif-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Kollektif Bold Italic';
  font-style: italic;
  font-weight: bold;
  src: local('Kollektif Bold Italic'), url('./fonts/Kollektif-BoldItalic.woff') format('woff');
}

html,
body {
  padding: 0;
  margin: 0;
  color: #eaeaea;
  font-family: 'Kollektif Regular', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

a {
  text-decoration: none;
  color: #ff7e00;
  font-size: 16px;
  transition: .25s;
}

a:hover {
  opacity: .5;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  margin: 0.2rem 0;
}

p {
  font-size: 18px;
  margin: 0.2rem 0;
  font-family: 'Kollektif Regular', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

.container {
  min-height: 100vh;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #16161e;
}

.main {
  padding: 5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.logoAlt {
  display: block;
  height: 10rem;
  width: 10rem;
  align-self: center;
}

.space {
  margin: 1rem 0;
}

.heading {
  font-size: 50px;
  color: #50cd88;
  font-weight: bold;
}

.table {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0.5rem 0;
  width: 100%;
}

.table div {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: left;
}

.table ul {
  font-size: 18px;
  list-style: none;
  padding: 0;
  padding-right: 1rem;
  margin: 1rem 0;
}

.table ul.right li {
  justify-content: flex-end;
}

.table li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.table i {
  width: 1.5rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.table ul.right i {
  margin-right: 0;
  margin-left: 0.5rem;
}

.table a {
  font-size: 18px;
}

@media (max-width: 700px) {
  .table {
    width: 100%;
    flex-direction: column;
  }

  .table div {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .table ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
  }
  
  .table ul.right li {
    justify-content: center;
  }

  .main {
    align-items: center;
    padding: 2rem 0;
  }
}
