canvas {
  position: fixed;
  top: 0;
  left: 0;
}
a {
  text-decoration:none;
  color:inherit;
}

:root {
  --dark-bg: rgba(15, 15, 15, 0.95);
  --spacing: 150px;
  --subsectionspacing: 100px;

  font-family: brandon-grotesque, sans-serif;
  font-weight: 100;
  font-style: normal;
}
#headermenu {
  width:100vw;
  color:white;
  position:absolute;
  display:flex;
  flex-direction:row;
  justify-content:space-evenly;
  z-index:100;
  padding-bottom:1em;
}
main {
  width: 100%;
  max-width: 1200px;
  color: white;
  z-index: 99;
  position: absolute;
  width: 100%;
  margin: 0 auto;
  padding: 120px 5%;
  display: flex;
  flex-direction:column;
  grid-template-columns: repeat(12, 1fr);
}

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

canvas {
  position: fixed;
  top: 0;
  left: 0;
}
form {
    padding:1em;
    display:flex;
    flex-direction:column;
}
.contactform {
    
}
.inputname {
    width:20%;
}
.inputemail {
    width:20%;
}
h1  {
    font-weight:400;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

  header {
    background: var(--dark-bg);
    grid-column: 2 / span 5;
    font-size: 2.5rem;
    padding: 2rem;
    margin-left:1em;
    width:500px;
    height:400px;
    font-weight:400;
    margin-bottom: var(--spacing);
    border-radius:10%;
  }

  section {
    grid-column: 2 / 8;
    padding: 1rem;
    background: var(--dark-bg);
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: var(--spacing);
    margin-left:2em;
    margin-right:1em;
    border-radius:3em;
  }
  .sectionright {
    background: var(--dark-bg);
  }
  .sectionContainer {
    display:flex;
    flex-direction:row;
    padding-right:2em;
    padding-bottom:2em;
  }

  .websitegif {
    width:35em;
    height: 17.5em;
    padding-bottom:1em;
    border-radius:10%;
  }
  .githubicon {
    width:40px;
    height:40px;
  }
  .linksContainer {
    display:flex;
    flex-direction:column;
    align-items:center;
    align-content:space-around;
    background:var(--dark-bg);
    height:30.938rem;
    border-radius:10%;
    padding-top:1em;
  }
  .website-links {
    padding:1em;
    display:flex;
    justify-content:space-between;
  }
  blockquote {
    margin: 2em 0;
    padding: 0;
    grid-column: 2 / span 9;
  }

  blockquote p {
    color: black;
    background-color: white;
    font-size: 2.5rem;
    display: inline-block;
    line-height: 1.4;
    border-radius: 22px;
    padding: 0.5em;
    max-width: 100%;
    box-sizing: border-box;
  }

  @media screen and (max-width: 768px) {
    blockquote p {
      font-size: 1.8rem;
    }
  }

  .left {
    grid-column: 6 / 12;
  }
button {
    background-color : rgb(58, 68, 83); 
    box-sizing : border-box; 
    color : rgb(217, 222, 230); 
    text-decoration : none solid rgb(217, 222, 230); 
    border : 3px solid rgb(58, 68, 83); 
    padding : 5px 10px; 
    border-radius : 2px; 
    font-family : "Roboto Mono"; 
    font-weight : 400; 
    font-size : 20px; 
    transition : all 0.2s ease 0s; 
    border-radius:12px;
}
button:hover {
    background-color:#3a4453 !important;
}

@media screen and (max-width: 768px) {
  header {
    width: 90%;
    margin-left: 5%;
    height: auto;
  }

  section {
    margin-left: 5%;
    margin-right: 5%;
  }

  .sectionContainer {
    flex-direction: column;
  }

  .linksContainer {
    width: 90%;
    height: auto;
  }

  .websitegif {
    width: 100%;
    height: auto;
  }

  .inputname, .inputemail {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #headermenu {
    flex-direction: column;
    align-items: center;
  }
}