.homepage__header {
  position: fixed;
  display: flex;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage__header svg path {
  fill: currentColor;
}

.logo__div {
  position: absolute;
  margin: 1.2rem 7rem;
  width: 5rem;
  height: 5rem;
  color: rgb(251, 135, 52);
}

.logo__div::after {
  content: "";
  display: block;
  background: rgb(146, 146, 146);
  margin-top: 0.5em;
  width: 100%;
  height: 3px;
}

.logo {
  text-align: center;
  position: absolute;
  left: 10rem;
  top: 1rem;
  width: 8rem;
  background: url(./images/SVGs/game-controller.svg);
  background-size: cover;
  width: 6rem;
  height: 6rem;
  color: red;
}

.navbar__section {
  position: relative;
  align-items: center;
  width: 90%;
  transition: opacity 1s ease;
}

/* The following rules for the navbar are specific for when
      the user scrolls away from the homepage intro pic */
.nav__scrolled {
  opacity: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 1;
  top: 50%;
  justify-content: space-around;
  margin-top: 1.5rem;
}

nav li {
  padding: 2rem 7rem;
}

nav a {
  color: rgb(230, 228, 226);
  text-decoration: none;
  font-size: 1.2rem;
  position: relative;
}

nav a:hover {
  color: grey;
}

nav a::before {
  content: "";
  display: block;
  height: 3px;
  width: 50%;
  background: rgb(255, 255, 255);
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
  opacity: 0.75;
  transform-origin: left;
  transform: scale(0, 1);
  transition: transform ease-in-out 250ms;
}

nav a:hover::before {
  transform: scale(1, 1);
}

.footer {
  width: 100%;
  bottom: 0;
  height: 10rem;
  background-color: #502144;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.footer__link--items {
  font-size: 0.7rem;
  position: relative;
  right: 25vh;
}

.links__div {
  display: flex;
  gap: 3rem;
  text-shadow: 1px 1px 2px pink;
  font-size: 1.2em;
  margin-top: 1.5rem;
}

.footer__link--items a {
  display: flex;
  flex-direction: column;
  margin: auto 4rem;
  text-decoration: none;
  font-size: 1.2em;
  margin: 0.8em auto;
  color: antiquewhite;
}

.socialLinks__div {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  left: 25vh;
  align-items: center;
  font-size: 35px;
  margin-top: 1.5rem;
  gap: 4rem;
}

.socialLinks__div a {
  color: antiquewhite;
  position: relative;
  text-shadow: 1px 1px 2px pink;
}

.social__icon--link::after {
  content: "";
  display: block;
  position: absolute;
  left: 170%;
  background: rgb(146, 146, 146);
  top: 15%;
  width: 2px;
  height: 60%;
}

body {
  background-color: rgb(250, 235, 215);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* background: rgb(110, 109, 109); */
  font-family: "Montserrat", sans-serif;
}

.introSection__div {
  background-color: rgb(147, 147, 147);
  background-image: url(../images/HomepageBackgorund.jpg);
  /* The background attachment sticks the image back */
  /* to the background of the page */
  background-attachment: fixed;
  /* As the name suggests the following variable */
  /* blends background color and image together */
  /* useful for when you have to darken the background image */
  /* for instance. */
  background-blend-mode: multiply;
  width: 100%;
  height: 200vh;
  background-size: cover;
  /*  */
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  flex-shrink: 1;
  box-shadow: 3px 3px 10px rgb(39, 39, 39);
}
.introSection__div iframe {
  margin-top: 10rem;
  width: 50%;
  height: 80%;
}/*# sourceMappingURL=CV.css.map */