@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, body {
  height: 100%;
  width: 100%;
  font-family:'Popins',sans-serif ;
  background-color: #3f3f3f;
  color: #222;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}





.bringforward{
  background: #3f3f3f;
  visibility: visible;
}

#particles-js{
  width: 100%;
  height: 100%;
  background-color: #3f3f3f;
  /*background-image: url('');*/
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
}

.maxspace{
  max-width: 204px;
  max-height: 176px;
  padding-bottom: 5px;
}

.logoshadow{
  filter: drop-shadow(.75em .75em 1em);
}
.superimg{
  max-width: 144px;
  max-height: 192px;
}
.smalltext{
  font-size: 15px;
}
.samebox{
  width: 204px;
}
/* Space X api hover over link color and boarders*/
.spaceX:link{
  color: #d5d5d5d5;
  border-bottom: 1px solid #d5d5d5d5;
}
.spaceX:hover{
  color: #d5d5d5d5;
  border-bottom: 1px solid #d5d5d5d5;
}
/* Used this for displaying the same background colour for every element so the theme of the web page stays the same*/
.samebackground{
  background-color: #3f3f3f;
  width: 50%;
  top: 50%;
  left: 50%;
  margin: auto;
  border-color: #3f3f3f;
}
.gameTitles{
  text-align: center;
}
/* used to stop overvlow of the website elements*/
.overvlow{
  max-width: 204px;
  left: 0;
  top: 0%;
}
/* elements spaced apart evenly*/
.gamespaces{
  padding: 10px;
}
/* sends elements to the left*/
.totheleft{
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
/* not every item can be unified using same background
blackground is used in the same way where samebackground would brake something in the visuals*/
.blackground{
  background-color: #3f3f3f;
  border-color:#3f3f3f ;
}
.navbar{
  padding: .8rem;
}
/* Carousel was made */

.carousel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 500px;
  max-height: 700px;
}

.carousel-inner img {
  
  display: flex;
  margin: auto;
  width: 20%;
  height: 100%;
  /* border-radius: 18px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9); */
}
.carousel-caption h3 {
  
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  background: rgba( 255, 255, 255, 0.75 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur(6.0px);
  -webkit-backdrop-filter: blur( 6.0px );
  border-radius: 10px;
  font-size: 500%;
  text-shadow: 1px 1px 10px #000000;
}
.carousel-caption button{
  position: absolute;
  top: 300%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shadow{
  font-size: 500%;
  text-shadow: 1px 1px 10px #000000;
}
/* Jumbotron was made*/
.jumbotron {
  padding: 1rem;
  border-radius: 0;
  background-color: #3f3f3f
}
footer {
  background-color: #3f3f3f;
  color: #d5d5d5d5;
}
/*adds aditional padding for certian items */
.padpos{
  padding:0 30px ;
  padding-top: 20px;
}
/* lowers text of the cards*/
.textlower{
  position: relative;
  top: 60px;
}
/* centers items into middle*/
.poscenter{
  top: 0;
  left: 0;
  padding: 1px;
  width: 58%;
}
/* centers items*/
.truecenter{
  top: 0;
  left: 0%;
  width: 100%;
  text-align: center;
}
/* positions text at the top*/
.textTop{
  position: relative;
  top: 0px;
}
/* Yes I do have a lot of centering in my css mainly because they all are for diverent items that needs diverent attributes*/
.superCenter{
  display: grid;
  grid-template-columns: 150px;
  justify-content: center;
}
/* Cards are made*/
.card{
  display: grid;
  grid-template-columns: 300px;
  grid-template-rows: 210px 210px 210px;
  grid-template-areas: "image" "text" "button";

  font-family:'Popins',sans-serif ;
  border-radius: 18px;
  background:  #3f3f3f;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
  text-align: center;

  transition: 0.5s ease;
  cursor: pointer;
  justify-content: center;
}
.card-image{
  grid-area: image;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}
.card-text{
  grid-area: text;
  margin: 25px;
  color: #d5d5d5d5
}
.card-button{
  grid-area: button;
}
.card:hover{
  transform: scale(1.2);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.6);
}
/* Cards are done */
/* My socials are made here size and colour*/
.social a {
  font-size: 4.5em;
  padding: 3rem;
}
.fa-facebook {
  color: #3b5998;
}
.fa-twitter {
  color: #00aced;
}
.fa-twitch {
  color: #6441a5;
}
.fa-instagram {
  color: #517fa8;
}
.fa-youtube {
  color: #bb0000;
}
.fa-facebook:hover,
.fa-twitter:hover,
.fa-twitch:hover,
.fa-instagram:hover,
.fa-youtube:hover {
  color: #d5d5d5;
}
/* and hover effects that are very responsive not gonna lie*/
ul {
  text-align: center;
  list-style: inside;
}
/* made this to display font size and can change dependant on screen size 
also seen in media section*/
 .huge{
  font-size: 200px;
}

/*---frames---*/
/* animations*/
.slide_in{
  animation: slideme .7s ease;
}
.sameColor{
  color: #d5d5d5d5;
  background-color: #3f3f3f
}
.mobilehelp{
  padding: 0;
}

@keyframes slideme{
  0%{
    transform: skewX(53deg) translate(-500px);
    opacity: 0;
  }
  60%{
    transform: translateX(0px);
  }
  62%{
    transform: skew(0deg) translateX(30px);
  }
  70%{
    transform: skew(0deg) translate(0);
  }
  80%{
    transform: skew(0deg) translate(0);
  }
  90%{
    transform: skew(-5deg);
  }
  100%{
    transform: skew(0);
  }
}
/* slide in animation*/

/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
/*--- Fixed Background Image --*/
figure {
  position: relative;
  width: 100%;
  height: 60%;
  margin: 0!important;
}
.fixed-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fixed {
  background-image: url('img/mac.png');
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
/*--- Bootstrap Padding Fix --*/
[class*="col-"] {
    padding: 1rem;
}
/* Created my skills dot system with dot and empty dot*/
.dot {
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  border: solid 2px;
  border-color: #000000;
  display: inline-block;
}
.emptyDot {
  height: 25px;
  width: 25px;
  border: solid 2px;
  border-color: #000000;
  background-color: #3f3f3f;
  border-radius: 50%;
  display: inline-block;
}
.textsize{
  font-size: 40px;
}
.topcenter{
  justify-content: center;
  margin: 0 auto;
}


/*
Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }
*/
body {
  font-family: sans-serif;
}
/*Created my Timeline could have made it better tho */
.timeline {
  white-space: nowrap;
  padding: 30px 0 10px 0;
  position: relative;
}
.parent {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.entry {
  display: inline-block;
  vertical-align: top;
  background: #13519C;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  text-align: center;
  position: relative;
  border-top: 4px solid #06182E;
  border-radius: 3px;
  left: -8%;
}
.centerall{
  top: 50%;
  left: 50%;
  max-width: 100%;
  margin-left: -8.5%;
}
.entry img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.entry:after {
  content: '';
  display: block;
  background: #eee;
  width: 7px;
  height: 7px;
  border-radius: 6px;
  border: 3px solid #06182E;
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -6px;
}

.entry:before {
  content: '';
  display: block;
  background: #06182E;
  width: 5px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: -20px;
  margin-left: -2px;
}

.entry h1 {
  color: #fff;
  font-size: 40px;
  font-family: Georgia, serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.entry h2 {
  letter-spacing: .1em;
  margin-bottom: 10px;
  font-size: 30px;
}

.bar {
  height: 4px;
  background: #eee;
  width: 100%;
  position: relative;
  top: 13px;
  left: 0;
}
/* Timeline done*/

.maxsize{
  max-width: 80%;
  margin: 0 auto;
}
/* Media Queries are the area where I can adjust any class dependant on screen size helps a ton */
/*---Media Queries --*/
@media (max-width: 992px) {
  .carousel-inner {
    max-width: 80%;
    margin: 0 auto;
  }
  .carousel-caption h3 {
    font-size: 300%;
    text-shadow: 1px 1px 10px #000000;
    margin-top: 50%;
  }
  .entry {
    display: inline-block;
    vertical-align: top;
    background: #13519C;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    text-align: center;
    position: relative;
    border-top: 4px solid #06182E;
    border-radius: 3px;
    left: -25%;
  }
    .mobilehelp{
      padding: 0;
      font-size: 10px;
    }
    .samebackground{
      background-color: #3f3f3f;
      width: 70%;
      top: 50%;
      left: 50%;
      margin: auto;
      border-color: #3f3f3f;
    }
}
@media (max-width: 768px) {
  .carousel-inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .carousel-caption h3 {
    font-size: 200%;
    text-shadow: 1px 1px 10px #000000;
    margin-top: 50%;
  }
  .mobilehelp{
    padding: 0;
    font-size: 10px;
  }

.textsize{
  font-size: 20px;
}
.entry {
  display: inline-block;
  vertical-align: top;
  background: #13519C;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  text-align: center;
  position: relative;
  border-top: 4px solid #06182E;
  border-radius: 3px;
  left: -35%;
}
  .samebackground{
    background-color: #3f3f3f;
    width: 80%;
    top: 50%;
    left: 50%;
    margin: auto;
    border-color: #3f3f3f;
  }
  
}
@media (max-width: 500px){
  
  .carousel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 300px;
  max-height: 300px;
}

.carousel-inner img {
  
  display: flex;
  margin: auto;
  width: 40;
  height: 100%;
  /* border-radius: 18px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9); */
}
.carousel-caption h3 {
  
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  background: rgba( 255, 255, 255, 0.75 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur(6.0px);
  -webkit-backdrop-filter: blur( 6.0px );
  border-radius: 10px;
  font-size: 500%;
  text-shadow: 1px 1px 10px #000000;
}
.carousel-caption button{
  position: absolute;
  top: 500%;
  left: 50%;
  transform: translate(-50%, -50%);
}

  
  
  
  
  
  
  
  
  .maxspace{
    max-width: 160px;
    max-height: 176px;
    padding-bottom: 5px;
    font-size: 20px;
  }
  .samebox{
    width: 160px;
  }
  .smalltext{
    font-size: 12px
  }
}

@media (max-width: 576px) {
  
  .carousel-inner {
    max-width: 100%;
    margin: 0 auto;
  }
  .btn-lg{
    padding: 0.20rem 0.45rem;
  }
  .carousel-caption h3 {
    font-size: 150%;
    text-shadow: 1px 1px 10px #000000;
    margin-top: 50%;
  }
  .mobilehelp{
    padding: 0;
    font-size: 10px;
  }
.column {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.huge{
  font-size: 150px;
}
.textsize{
  font-size: 20px;
}
.entry {
  display: inline-block;
  vertical-align: top;
  background: #13519C;
  color: #fff;
  padding: 0px;
  font-size: 8px;
  text-align: center;
  position: relative;
  border-top: 4px solid #06182E;
  border-radius: 3px;
  left: -54%;
  
  
}
.smoltext{
  font-size: 14px;
}
  
.samebackground{
  background-color: #3f3f3f;
  width: 100%;
  top: 50%;
  left: 50%;
  margin: auto;
  border-color: #3f3f3f;
}

}

