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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color:black;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3; 
    opacity: 0.9;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

a {
  color: white;
  text-decoration: none;
}

p{
  color:white;
  }

h1 {
  font-size: 55px;
  font-family: "astloch-regular";
  text-decoration: none;
}

h1 a {
}

h1 a:hover {
 
}

h2 {
  font-family: helvetica;
  text-decoration: none;
    font-size: 20px;
}

h3{
  font-weight:normal;
  }
  
  h3:hover{
    font-style:italic;
    }

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

#one {
  grid-area: 1 / 1 / 1 / 1;
  text-align: center;
}

#two {
  grid-area: 1 / 2 / 1 / 2;
  text-align: center;
}

#three {
  grid-area: 1 / 3 / 1 / 3;
  text-align: center;
}


#me img{
  margin-top:100px;
     transition: transform .5s;
      transition: color 0.6s ease-in-out, box-shadow 0.8s ease-in-out;
  }

#me img:hover{
     transition: transform .5s;
           transition: color 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
      color: #000;
 background: black;
  box-shadow: 0 0 100px #b78c54;
  }
  
nav {
  position: relative;
  text-decoration:none;
}

nav h2 {
  position: relative;
  display: flex;
  justify-content: center;
  text-decoration:none;
}

#toggle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  height: 40px;
}


#toggle:checked ~ ul {
  visibility: hidden;
  opacity: 0;
}

#toggle:not(:checked) ~ ul {
  opacity: 1;
}

nav ul {
  padding-left: 0;
  margin-top: 0;
  list-style: none;
  overflow: hidden;
  text-align: center;
  width: 100%;
    text-decoration:none;
}

nav ul li {
  position: relative;
  display: inline-block;
  line-height: 1.5;
  width: 100%;
  margin: 0 0 0.25rem 0;
    text-decoration:none;
   color:white;
}

ul a{
font-family:helvetica;  
}

ul a:hover{
   color:white;
   text-decoration:underline;
}

.next {
  margin-top: 45px;
  margin-bottom: 50px;
  text-align: center; 
    transition: color 0.6s ease-in-out, text-shadow 0.6s ease-in-out;
}

.socials{
  display:flex;
  justify-content:space-evenly;
  margin-top:200px;
  font-family:helvetica;
}

.fa-brands {
  padding: 5px;
  font-size: 20px;
  width: 20px;
    color: #827f7d; 
  text-align: center;
  text-decoration: none;
}

.fa-brands:hover {
  opacity: 0.7;
 color:white;
}


@keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 5px #441300;
  }
  50% {
    text-shadow: 0 0 10px #c63700;
  }
}

@media only screen and (max-width: 1080px) {
  .container{
      grid-template-columns: 1fr;
      height: 100vh;
        width: 100vw;
      grid-template-rows: 1fr;
  }
  
  #one{
  }
  
  #two{
  }
  
  #three{
    
  }
  
  .socials{
      display: inherit;
    margin-top: 50px;
  }
  
  #me img{
    margin-top:50px;
  }
  
  h1{
      font-size: 35px;
  }
}