body {
  background: black;
  background-image: url(svg/background.svg);
  background-position: 35% 2%;
  background-size: 110%;
  background-repeat: no-repeat;
}
#wrapper {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
#wrapper.active {
  display: flex;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: grey;
  opacity: 0.5;
  cursor: url(svg/pointer.svg), auto;
}
.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 20px 80px;
  min-width: max-content;
  max-width: 70vw;
  min-height: 200px;
  height: max-content;
  max-height: 300px;
  background: #fff;
  color: #000;
  text-align: center;
}
.content > .title {
  margin: 10px 0;
  font-size: 20px;
}
.content > div > a {
  color: black;
}
#close {
  position: absolute;
  right: 7px;
  top: -5px;
  cursor: url(svg/pointer.svg), auto;
}
.contactMe {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
  margin: 0 20px 0 0;
  font-size: 15px;
}
.contactMe p {
  cursor: url(svg/pointer.svg), auto;
}
.arrowWrapper {
  display: grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
}
.arrow {
  width: 40px;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  cursor: url(svg/pointer.svg), auto;
  transition: 1s;
}
.arrowReverse {
  opacity: 0;
  width: 40px;
  margin-left: 20px;
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  transition: 1s;
}
.arrow:hover {
  opacity: 0;
}
.arrow:hover ~ .arrowReverse {
  opacity: 1;
}
.arrowReverse:hover {
  opacity: 1;
}
.title {
  display: flex;
  justify-content: center;
  margin-top: 10%;
}
.gamedesigner {
  display: flex;
  justify-content: center;
  font-size: 45px;
  margin-top: -5%;
  color: #DDD7D3;
}
.menu {
  margin-top: 7%;
  margin-left: 11%;
}
.point {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.element {
  order: 1;
  margin-left: 20px;
  color: #7C7C7C;
  transition: all ease .2s;
}
.element:hover {
  color: #fff;
}
.element ~ .borderActive {
  display: none;
}
.element:hover ~ .borderActive {
  display: block;
}
.element:hover ~ .border {
  display: none;
}
.element:active ~ .borderActive {
  display: block;
}
.element:active ~ .border {
  display: none;
}
.element:active {
  color: black;
}
@media (max-width: 1000px) {
  .element {
    font-size: 28px;
  }
}
@media screen and (max-width: 900px) and (orientation: landscape) {
  .title {
    font-size: 35px;
  }
  .gamedesigner {
    font-size: 25px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 479px) {
  .content {
    min-width: 70vw;
    min-height: 80vw;
  }
}
