@font-face {
  font-family: 'bogart_trialregular';
  src: url('../fonts/bogart-regular-webfont.woff2') format('woff2'),
       url('../fonts/bogart-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'garet_book';
  src: url('../fonts/Garet-Book.woff') format('woff2'),
       url('../fonts/Garet-Book.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
  min-height: 100vh;
  background: white;
  background-image: url("../images/bg.jpg");
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: cover;
}

rect {
  shape-rendering: crispEdges;
}

svg {
  stroke: transparent;
  stroke-width: 0px;
}

header {
  height: 100px;
  padding: 20px;
}

header .logo {
  background-image: url("../images/mak-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 50px;
}

main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
}

main .main-text {
  text-align: center;
  font-family: "bogart_trialregular", cursive;
  font-size: 40px;
  color: #fff;
  margin-bottom: 24px;
}

main .join-waitlist {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "garet_book", sans-serif;
  font-size: 18px;
  /* margin-bottom: 50px; */
  color: black;
}

main .join-waitlist a {
  all: unset;
  background: white;
  padding: 10px;
}

main .join-waitlist a:hover {
  background: black;
  color: white;
}

main .join-waitlist p {
  padding-left: 16px;
}

@media screen and (max-width: 800px) {
  body {
    background: url("../images/bg.jpg"), black;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  main {
    position: relative;
    /* margin-top: 100px; */
  }

  main .main-text {
    font-size: 35px;
    /* margin-bottom: 24px; */
  }
  
  main .join-waitlist {
    font-size: 14px;
  }

  main .join-waitlist a {
    white-space: nowrap;
  }

  header .logo {
    background-position: center;
    height: 50px;
  }
}