/* GLOBAL STYLING */

@import url('https://fonts.googleapis.com/css2?family=Heebo&family=Montserrat&family=Lato&display=swap');
@font-face { font-family: Horror; src: url('media/font/horror.ttf'); }


html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color:#111;
}

/* use viewport-relative units to cover page fully */
body {
  display:flex;
}

.globalContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin:0 auto;
  background-color: #111;
  width:1180px
}
.placeholder {
  margin:auto 10px auto 10px;
  font-family: Heebo,sans-serif;
  display:flex;
  flex-direction: column;
  padding:30px;
  background-color:#202020;
  color:white;
  max-width: 1200px;
  width:100%;
  box-shadow: -1px 1px 10px 1px #8406bd, 1px -1px 10px 1px #045aff;
  border-radius:14px;
}

.longPage{
  margin-top:30px;
  margin-bottom:30px;
}

h1,h2,h3,h4{
  text-transform: uppercase;
  font-family:Heebo, sans-serif;
  letter-spacing: 1px;
}

p {
  font-family:Lato, sans-serif;
  line-height:1.4;
}

a.btn {
  background-color: rgb(145, 71, 255);
  padding: 10px;
  border-radius: 0.4rem;
  color: white;
  text-decoration: none;
  display: inline-block;
}

a.btn:hover{
  background-color: rgb(119, 44, 232);
}

.btn svg {
  width: 20px;
  vertical-align: middle;
  height: 20px;
  margin-right: 5px;
  color: white;
  filter: invert(1);
  margin-top: -3px;
}

/* HEADER STYLING */

header{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding:20px;
  margin-top:-15px;
}
.brandContainer{
  display:flex;
  align-items: center;
}
.brandContainer h1{
  margin-left:20px;
  font-weight: bold;
  font-size:24px;
}
header img,h1,li{
  display:inline;
}
header img{
  width:50px;
  height:50px;
}
header a{
  text-decoration: none;
  color: white;
}
nav ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size:1.1em;
}

nav li{
  margin:0 5px;
  text-transform:uppercase;
  font-family:Heebo, sans-serif;
}

/* MAIN HOME STYLING */

main{
  display:flex;
  flex-direction: row;
  padding:20px;
  align-items:center;
}

.layoutLeft{
  width:50%;
  padding-right:10%;
}

.layoutLeft h1{
  font-size:3.5em;
  line-height: 1;
  margin:0;
  color:rgb(191, 148, 255);
}

h1 span{
  font-weight: lighter;
  font-size:0.5em;
  color:white;
}

.layoutLeft hr{
  width: 50px;
  height: 5px;
  background: rgb(191, 148, 255);
  border: 0;
  display: block;
  border-radius: 15px;
  margin-left: 0;
}

.layoutRight{
  margin:0 auto;
  width:50%;
}

#twitchPlayer{
  padding-top: 56.25%;
  position: relative;
  height: 0;
  margin:0;
}

#twitchPlayer iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 5px;
}

/* About Styling */

.specs {
  padding-left:1.2em;
}

.specs li{
  display:list-item;
}

.aboutMain h3{
  text-transform: none;
  font-weight: normal;
  color: #f3c1e8;
  margin: 25px auto 6px;
  line-height: 1.4;
  letter-spacing: unset;
}

.aboutMain p {
  line-height: 1.4;
  margin: unset;
}

.aboutGallery{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.aboutGallery img{
  width:220px;
  height:220px;
  border-radius:110px;
}

.img1{
  margin-left:-250px;
}

.img2{
  margin-right:-250px;
  margin-top:-50px;
}

.img3{
  margin-left:-250px;
  margin-top:-50px;
}

/* FOOTER STYLING */

footer{
  padding:20px;
  margin-bottom:-15px;
  font-size:0.75em;
  margin-top: 40px;
}

.footerContainer{
  display:flex;
  justify-content: space-between;
}

.footerSocial a svg{
  width:20px;
  height:20px;
  margin-right:5px;
  vertical-align: middle;
  display: inline-block;
}

.TGK a{
  text-decoration:none;
}

.TGK span{
  font-family:Horror, sans-serif;
  color:#FFD200;
}

.subFooter{
  margin-top:20px;
  display: flex;
  justify-content:space-between;
}

.copyright{
  font-size:1em;
  text-align: right;
}

/* BREAKPOINTS */

/* 950PX BREAKPOINT (ABOUT  IMAGES) */

@media only screen and (max-width: 950px) {

  .aboutGallery img {
    width: 160px;
    height: 160px;
    border-radius: 80px;
  }

}

/* 720PX BREAKPOINT */

@media only screen and (max-width: 720px) {

  main{
    flex-direction: column;
  }

  .layoutLeft{
    width: 100%;
    padding-right: unset;
    margin-bottom:50px;
  }

  .layoutRight{
    width:100%;
  }

  /* about page styling */
  .aboutMain{
    flex-direction: column-reverse;
  }

  .aboutGallery{
    flex-direction:row;
    justify-content: center;
    margin-top:10px;
  }

  .aboutGallery img{
    margin:unset;
    padding:5px;
    width:100px;
    height:100px;
  }

}

/* 620PX BREAKPOINT */

@media only screen and (max-width: 620px) {


  .globalContainer{
    height:unset;
    margin:unset;
  }

  header{
    flex-direction: column;
    padding:unset;
    margin:unset;
    justify-content: center;
  }

  nav {
    margin-top: 20px;
  }

  .placeholder{
    padding:10px;
    margin: 10px;
  }

  .longPage{
    /* margin:unset; */
  }

  main{
    padding:10px;
  }

  .layoutLeft{
    margin-top:20px;
  }

  .layoutLeft h1{
    font-size:2.1em;
  }

  footer{
    padding:10px;
    margin-bottom:5px;
  }

.footerSocial{
  margin:0 auto;
}

.footerSocial a svg{
  margin:0 10px;
}

  .copyright{
    text-align: left;
  }

}
