/* MOBILE FIRST */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  background: #121212;
  font-family: "Roboto", sans-serif;
}

/* TOP OF THE PAGE */
.header {
  height: 40vh;
  background-image: url("../images/banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  z-index: 10;
  top: 0;
  width: 100%;
  display: grid;
}

#menu {
  text-align: center;
  padding: 0;
}
#menu li {
  display: inline-block;
  list-style: none;
  position: relative;
}
#menu li::after {
  content: "";
  width: 5px;
  height: 25px;
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  top: 30px;
  right: -2px;
  transform: skew(-30deg);
  border-radius: 2px;
}
#menu li:last-child::after {
  width: 0;
}
#menu li a {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  transition: 0.25s;
  padding: 0 20px;
  display: block;
  line-height: 6;
  position: relative;
  letter-spacing: 1px;
}
#menu li.active a {
  color: #E59C1B;
}
#menu li a::after {
  content: "";
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.65);
  position: absolute;
  border-radius: 4px;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.25s;
}
#menu li a:hover::after {
  width: 25px;
}
#menu li.active a::after {
  width: 30px;
  background: #E59C1B;
}

#title {
  position: absolute;
  width: 100%;
  top: 30%;
}
#title h3 {
  text-align: center;
  text-transform: uppercase;
  color: #E59C1B;
  font-size: 22px;
  letter-spacing: 5px;
  margin: auto;
}
#title h4 {
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: 200;
  margin: auto;
  margin-top: 15px;
}

/* HOME PAGE */
.main {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 320px;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  grid-template-areas: "main";
}

#avatar {
  grid-area: image;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  width: 125px;
}

/* ALL CARDS */
.card {
  background-color: #1B1B1B;
  border-radius: 4px;
  color: #FFF;
  height: 500px;
  margin-top: 20px;
}

/* ALL CARD TITLES */
.card h1 {
  text-align: center;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 700;
  color: #E59C1B;
  letter-spacing: 1.5px;
  position: relative;
  margin-bottom: 25px;
  margin-top: 20px;
  font-size: 16px;
}

.card h1::after {
  content: "";
  height: 3px;
  width: 50px;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background: #E59C1B;
  border-radius: 15px;
  bottom: -12px;
}

/* HOME CARD CONTENT */
.cardabout {
  height: 435px;
  position: relative;
  display: grid;
  grid-template-rows: 40% 60%;
  grid-template-columns: 15% 70% 15%;
  grid-template-areas: ". image ." ". description .";
}
.cardabout p {
  grid-area: description;
  display: block;
  align-self: start;
  justify-self: center;
  max-width: 90%;
  font-size: 18px;
}
.cardabout span {
  grid-area: description;
  display: block;
  align-self: center;
  color: #E59C1B;
  margin-top: 5%;
}

/* PROJECT CARDS CONTENT */
.cardinfo {
  height: 435px;
  top: 5%;
  position: relative;
  display: grid;
  grid-template-rows: 50% 50%;
  grid-template-columns: 100%;
  grid-template-areas: "image" "description";
}
.cardinfo p {
  grid-area: description;
  display: block;
  align-self: center;
  justify-self: center;
  max-width: 90%;
}
.cardinfo span {
  grid-area: description;
  display: block;
  align-self: center;
  color: #E59C1B;
  margin-top: 2%;
}

.button {
  display: grid;
  margin: auto;
  width: 50%;
  margin-top: 5%;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  background-color: #E59C1B;
  border-radius: 4px;
  border-bottom: 2px inset #E7A531;
  color: white;
  font-weight: bold;
}

.button:hover {
  background-color: #E7A531;
}

/* PROJECT PAGE */
.section {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 320px;
  display: grid;
  grid-template-columns: 100%;
  grid-template-areas: "aside" "main";
}

#villagercraft {
  grid-area: image;
  justify-self: center;
  align-self: center;
  width: 85%;
  height: 100%;
}

#android {
  grid-area: image;
  justify-self: center;
  align-self: center;
  width: 70%;
  height: 100%;
}

#noorderpoort {
  grid-area: image;
  justify-self: center;
  align-self: center;
  width: 300px;
  height: 65px;
}

.allCards {
  grid-area: main;
}
.allCards h1 {
  top: 20px;
}

/* SIDEBAR CARD */
.sidebar {
  grid-area: aside;
  background-color: #1B1B1B;
  box-shadow: none;
  border-radius: 4px;
  color: #FFF;
  height: 375px;
  margin-top: 20px;
}
.sidebar h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #E59C1B;
  letter-spacing: 1.5px;
  position: relative;
  margin-bottom: 35px;
  margin-top: 20px;
  font-size: 16px;
}
.sidebar h1::after {
  content: "";
  height: 3px;
  width: 50px;
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  background: #E59C1B;
  border-radius: 15px;
  bottom: -12px;
}
.sidebar .checked {
  color: #E59C1B;
}
.sidebar #stars {
  text-align: center;
  margin-top: 15%;
}

/* CONTACT PAGE */
.cardcontact {
  height: 400px;
  position: relative;
  display: grid;
  grid-template-rows: 50% 50%;
  grid-template-columns: 100%;
}

.discord {
  justify-self: center;
  align-self: center;
  background: #252525;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 100%;
  width: 85px;
  height: 85px;
}

.discord i {
  color: #E59C1B;
  font-size: 32px;
  margin-left: 28px;
  margin-top: 28px;
}

.discord h3 {
  font-size: 18px;
  margin-top: 40px;
  margin-left: -15%;
  width: 110px;
}

.email {
  justify-self: center;
  align-self: center;
  background: #252525;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35);
  border-radius: 100%;
  width: 85px;
  height: 85px;
}

.email i {
  color: #E59C1B;
  font-size: 32px;
  margin-left: 26.5px;
  margin-top: 28px;
}

.email h3 {
  font-size: 18px;
  margin-top: 40px;
  margin-left: -60%;
  width: 200px;
}

/* FOOTER */
footer {
  background: #1B1B1B;
  color: #FFF;
  text-align: center;
  padding: 2px 0 1px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
footer span {
  color: #FF0000;
}

/* DESKTOP */
@media screen and (min-width: 992px) {
  /* TOP OF THE PAGE */
  nav {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 50% 1fr;
    grid-template-areas: "logo menu";
    justify-items: center;
  }

  #logo {
    grid-area: logo;
    width: 250px;
    height: 150px;
  }

  #menu {
    grid-area: menu;
  }
  #menu li::after {
    height: 35px;
    top: 36px;
  }
  #menu li a {
    font-size: 18px;
    padding: 0 35px;
  }
  #menu li a::after {
    bottom: 35px;
  }

  #title {
    top: 35%;
  }

  /* HOME PAGE */
  .main {
    padding-top: 50px;
    width: 970px;
  }

  #avatar {
    width: 150px;
  }

  /* ALL CARDS */
  .card {
    height: 400px;
  }

  /* HOME CARD CONTENT */
  .cardabout {
    height: 250px;
    top: 5%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 15% 35% 35% 15%;
    grid-template-areas: ". image description .";
  }
  .cardabout p {
    align-self: center;
  }
  .cardabout span {
    margin-top: 2%;
  }

  /* PROJECT CARDS CONTENT */
  .cardinfo {
    height: 250px;
    top: 10%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 50% 50%;
    grid-template-areas: "image description";
  }

  .button {
    display: inline-block;
    width: 50%;
    margin-top: 5%;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    background-color: #E59C1B;
    border-radius: 4px;
    border-bottom: 2px inset #E7A531;
    color: white;
    font-weight: bold;
  }

  .button:hover {
    background-color: #E7A531;
  }

  /* PROJECT PAGE */
  .section {
    padding-top: 50px;
    width: 1170px;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 30% 70%;
    grid-template-areas: "aside main";
  }

  .allCards {
    grid-area: main;
  }
  .allCards h1 {
    top: 20px;
  }

  /* SIDEBAR CARD */
  .sidebar {
    margin-right: 20px;
    height: 400px;
  }

  /* CONTACT PAGE */
  .cardcontact {
    height: 250px;
    position: relative;
    top: 5%;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 50% 50%;
  }

  /* FOOTER */
  footer {
    margin-top: 50px;
  }

  /* CUSTOM SCROLLBAR FOR CHROME USERS */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #303030;
  }

  ::-webkit-scrollbar-thumb {
    background: #E59C1B;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #E7A531;
  }
}

/*# sourceMappingURL=style.css.map */
