html,
body {
  width: 100%;
  height: 100%;
}

html {
  display: table;
  font-family: Lato, "Segoe UI", Avenir, Ubuntu, Tahoma, Verdana, Helvetica, sans-serif;
}

body {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background: #151312;
}

h1 {
  font-size: 4em;
  font-weight: normal;
  text-transform: lowercase;
}

svg {
  width: 250px;
  height: 250px;
}

.logo {
  max-width: 500px;
  padding: 20px;
  display: flex;
  justify-self: center;
}

img {
  width: 100%;
  height: auto;
}

/* New landing page styles */
.main {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.main-container {
  background: #151312;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 0;
  width: 1440px;
  height: min-content;
  padding: 160px 0 0;
  position: relative;
  overflow: visible;
}
.nav-container {
  z-index: 10;
  flex: none;
  width: auto;
  height: auto;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
}
nav {

}