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

/* html,
body
{
    overflow: hidden;
} */

canvas {
  position: fixed;
  max-width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}


:root {
  --dark-bg: rgba(15, 15, 15, 0.95);
  --spacing: 350px;

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

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

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

header {
  background: var(--dark-bg);
  grid-column: 2 / span 5;
  font-size: 2.5rem;
  padding: 2rem;
  margin-bottom: var(--spacing);
}


section {
  grid-column: 2 / 8;
  padding: 1rem;
  background: var(--dark-bg);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: var(--spacing);
}

blockquote {
  margin: 0;
  padding: 0;
  grid-column: 2 / span 9;
  margin-bottom: var(--spacing);
}

blockquote p {
  color: black;
  background-color: white;
  font-size: 4rem;
  display: inline;
  line-height: 1;
}

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

/* My profile pic*/
.me{
  max-width: 100%;
  height: auto;
  /* height: 500px;
  width: 700px; */
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  border-radius: 8px;
}
.project{
  max-width: 100%;
  height: auto;
}

/* Footer Navigation Bar*/
.footer-logo img{
  width: 40px;
  height: 40px;
  
}
.footer-logo li{
  display: inline;
}

.footer{
  display: flex;
  align-items: center;
}

.footer ul{
  flex-grow: 1;
  text-align: end;
  padding-left: .5em;
}

.footer img:hover{
  background-color: rgba(255, 255, 255, .3)

}

/* Buttons */
button {
  background: none;
  color: #ffa260;
  border: 2px solid;
  font: inherit;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
  transition: 0.25s;
}

.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  transform: translateY(-0.25em);
}
.raise {
  --color: #ffa260;
  --hover: #e5ff60;
}
button:hover{
  color: #e4cb58;
  cursor: pointer;
}

@media screen and (max-width: 567px) {
  .left {
    grid-column: 1 / 12;
  }
  .light {
    grid-column: 1 / 12;
  }
  header {
    grid-column: 1 / 12;
    font-size: 1.5rem;

  }
  .footer {
    grid-column: 1 / 12;
  }
  .footer-logo img{
    width: 30px;
    height: 30px;
    
  }
}