@keyframes gunOcAnim{
  0% {
    opacity: 100;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes gun{
  0% {
    opacity: 0;
  }
  50% {
    opacity: 100;
  }
  100% {
    opacity: 0;
  }
}
a{
  text-decoration: none;
  color: inherit;
}
*{
  font-family: 'Open Sans', sans-serif;
}
body{
  margin: 0;
  margin-top: 4.5em;
  background-color: rgb(20, 20, 20);
  -webkit-tap-highlight-color: transparent;
}

.header{
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(20, 20, 20);
  top: 0px;
  height: 4.5em;
  width: 100%;
  font-weight: 400;
  z-index: 1000;
}
.logo{
  display: flex;
  width: 8em;
  height: 2em;
  margin-left: 1.5em;
}
.logo a{
  display: flex;
  max-width: 100%;
  max-height: 100%;
  cursor: pointer;
}
.logo a img{
  max-width: 100%;
  max-height: 100%;
}
.menu{
  display: none;
  list-style: none;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.header a{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  user-select: none;
  cursor: pointer;
}
.spacer{
  height: 0.2em;
  width: 100%;
}
.line{
  height: 0.2em;
  width: 100%;
  background-color: white;
  opacity: 0;
  transition-duration: 0.2s;
}
.addB, .artB, .tutB, .contB, .donB{
  display: flex;
  color: white;
  text-wrap: nowrap;
  font-size: 1.3em;
  align-self: center;
  overflow: hidden;
  transition-duration: 0.2s;
}
.addLi:hover .addB, .artLi:hover .artB, .tutLi:hover .tutB, .contLi:hover .contB, .donLi:hover .donB{
  color: #0099ff;
}
.addLi:hover .line, .artLi:hover .line, .tutLi:hover .line, .contLi:hover .line, .donLi:hover .line{
  background-color: #0099ff;
  opacity: 1;
  transition-duration: 0.2s;
}
.list{
  display: none;
  margin-right: 1.5em;
  width: 15%;
  min-width: 2em;
  max-width: 2em;
  height: 100%;
}
.listB{
  display: flex;
  flex-direction: column;
  max-height: 100%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  cursor: pointer;
}
.listB .listRec{
  height: 0.2em;
  width: 100%;
  border-radius: 0.2em;
  background-color: #ffffff;
}
.listMenu{
  display: none;
  flex-direction: column;
  position: absolute;
  justify-content: space-between;
  top: 4.5em;
  right: 0em;
  width: 100%;
  height: 30em;
  max-height: 70vh;
  padding-bottom: 1.5em;
  background-color: rgb(20, 20, 20);
  margin: 0;
}
.listMenu [class*="Li"]{
  justify-content: center;
}
.social{
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 10em;
  height: 1.5em;
  margin-right: 1.5em;
  max-width: 10em;
}

.footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(20, 20, 20);
  color:white;
  padding: 2em;
  margin-bottom: 2em;
  height: 20em;
  z-index: 100;
}
.socialBot{
  display: flex;
  justify-content: space-between;
  height: 1.8em;
  width: 20em;
  max-width: 100%;
}
.gumroad, .artstation, .youtube, .twitter, .sketchfab{
  transition-duration: 0.2s;
  height: 100%;
}

.gumroad:hover svg > #fill{
  fill: #ff90e7;
  transition-duration: 0.2s;
}
.artstation:hover svg > #fill{
  fill: #00B3EC;
  transition-duration: 0.2s;
}
.youtube:hover svg > #fill{
  fill: #FF2F00;
  transition-duration: 0.2s;
}
.youtube:hover svg > #fill2{
  fill: white;
  transition-duration: 0.2s;
}
.twitter:hover svg > #fill{
  fill: #00A3ED;
  transition-duration: 0.2s;
}
.sketchfab:hover svg > #fill{
  fill: white;
  transition-duration: 0.2s;
}
.sketchfab:hover svg > #fill2{
  fill: #00ABD3;
  transition-duration: 0.2s;
}
.contactUs{
  font-size: 1em;
  text-align: center;
}
.copyRights{
  font-size: 1em;
  text-align: center;
}

@media screen and (min-width:0em) {
  .list{
    display: flex;
  }
}
@media screen and (min-width:22em) {
  .footer{
    height: 15em;
  }
}
@media screen and (min-width:42em) {
  .menu{
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 0;
    max-width: 30em;
    margin-right: 1.5em;
  }
  .list{
    display: none;
  }
}
@media screen and (min-width:55em) {
  .menu{
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 0;
    max-width: 30em;
    margin-right: 0;
  }
  .social{
    display: flex;
  }
  .list{
    display: none;
  }
}