@import url("https://use.typekit.net/jmk3xov.css");

canvas{
  position: fixed;
  top: 0;
  left: 0;
}

:root {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
}


main {
  width: 100vw;
  color: white;
  z-index: 99;
  position: absolute;
  margin: 0 auto;
  padding: 120px 0;
  
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

h1, h2, h3, blockquote {
  font-family: elevon, sans-serif;
  font-weight: 700;
  font-style: normal;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
}


  navbar {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(22,37,219);
    background: linear-gradient(15deg, rgba(11, 23, 151, 0.95) 10%, rgb(70, 41, 150, .95) 40%, rgb(148, 12, 146, .95) 90%);
    font-size: 1rem;
  }

  navbar::after {
    content: '';
    display: table;
    clear: both;
  }

  .logo {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  nav {
    float: right;
  }

  nav ul {
    margin-top: 14px;
    padding: 0;
    list-style: none;
    margin-right: 50px;
  }

  nav li {
    font-family: elevon, sans-serif;
    font-weight: 700;
    font-style: normal;
    display: inline-block;
    margin-left: 100px;
    font-size: 1.5rem;
    position: relative;
  }

  nav a {
    color: rgb(219, 219, 219);
    text-decoration: none;
    text-transform: uppercase;
  }

  nav a:hover {
    color: rgb(109, 109, 109);
  }

  nav a::before {
    content: '';
    display: block;
    height: 5px;
    background-color: rgb(219, 219, 219);

    position: absolute;
    top: 30px;
    width: 0;

    transition: all ease-in-out 250ms;
  }

  nav a:hover::before {
    width: 100%;
  }

  header {
    border-radius: 30px;
    background: rgb(115,115,115, 0.95);
    background: linear-gradient(0deg, rgba(115,115,115,.65) 10%, rgba(71,68,68,.9) 30%, rgba(0,0,0,.95) 90%);
    grid-column: 2 / span 5;
    font-size: 2.5rem;
    text-align: center;
    margin-top: 95px;
    margin-bottom: 350px;
  }

  section {
    border-radius: 30px;
    grid-column: 2 / 8;
    padding: 1rem;
    background: rgb(115,115,115, 0.95);
    background: linear-gradient(0deg, rgba(115,115,115,.65) 10%, rgba(71,68,68,.9) 30%, rgba(0,0,0,.95) 90%);
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 350px;
  }

  blockquote {
    margin: 0;
    padding: 0;
    grid-column: 3 / span 8;
    margin-bottom: 100px;
    text-align: center;
  }

  blockquote p {
    border-radius: 20px;
    color: black;
    background-color: white;
    font-size: 4rem;
    line-height: 1;
  }

  .right {
    grid-column: 6 / 12;
  }