.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

body{
  background-color: black;
  margin: 0;
  padding: 0;
}

.logo-div{
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
}

#title-img{
  width: 30vw;
  min-width: 320px;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#top-border{
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 105px;
  right: 105px;
  margin: auto;
}


#right-border{
  width: 2px;
  height: calc(100vh - 105px);
  max-height: 100%;
  max-width: 100%;
  background-color: white;
  position: absolute;
  top: 105px;
  right: 105px;
  margin: auto;
}

#top-rect{
  width: 100vw;
  height: 85px;
  max-height: 100%;
  background: linear-gradient(to right,  rgba(255,255,255,0) 1%,rgba(255,255,255,1) 30%);
  position: absolute;
  top: 10px;
  right: 10px;
  margin: auto;
}

#right-rect{
  width: 85px;
  height: calc(100vh - 10px);
  max-height: 100%;
  max-width: 100%;
  /* background-color: white; */
  background: linear-gradient(to top,  rgba(255,255,255,0) 1%,rgba(255,255,255,1) 70%);
  position: absolute;
  right: 10px;
  top: 10px;
  margin: auto;
}

@media only screen and (max-width: 1200px) {
  .logo-div img{
    min-width: 80%
  }
  #top-border{
    width: 100vw;
    right: 0;
  }

  #right-border{
    height: 100vh;
    top: 0;
    right: 0;
  }
  #top-rect{
    right: 0;
    background-color: white;
  }
  #right-rect{
    display: none;
  }
}

@media only screen and (max-height: 500px) {
  #title-img{
    top: 110px;
  }
}

.fade-in {
  animation: fadeIn ease 3s;
  -webkit-animation: fadeIn ease 3s;
  -moz-animation: fadeIn ease 3s;
}

@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}

.navbar{
  height: 85px;
  max-height: 100%;
  position: absolute;
  right: 0;
  margin: auto;
}

.nav-container{
  height: 100%;
  width: 100%;
  margin: 0;
}

.nav-item{
  display: inline-block;
  height: 85px;
  margin-right: 85px;
}

#nav-item-last{
  display: inline-block;
  height: 85px;
  margin-right: 10px;
}

.nav-item svg{
  margin-top: 10%;
  height: 45px;
  width: auto;
}

.nav-item svg:hover{
  filter: invert(100%);
}


.swipe-side {
  transform-origin: top right;
  animation: swipeSide ease 0.35s;
  -webkit-animation: ease swipeSide 0.35s;
  -moz-animation: ease swipeSide 0.35s;
}

@keyframes swipeSide {
  0% {transform: scaleX(0.2);}
  100% {transform: scaleX(1);}
}

@-moz-keyframes swipeSide {
  0% {transform: scaleX(0.2);}
  100% {transform: scaleX(1);}
}

@-webkit-keyframes swipeSide {
  0% {transform: scaleX(0.2);}
  100% {transform: scaleX(1);}
}

.swipe-down {
  transform-origin: top right;
  animation: swipeDown ease 0.35s;
  -webkit-animation: ease swipeDown 0.35s;
  -moz-animation: ease swipeDown 0.35s;
}

@keyframes swipeDown {
  0% {transform: scaleY(0.2);}
  100% {transform: scaleY(1);}
}

@-moz-keyframes swipeDown {
  0% {transform: scaleY(0.2);}
  100% {transform: scaleY(1);}
}

@-webkit-keyframes swipeDown {
  0% {transform: scaleY(0.2);}
  100% {transform: scaleY(1);}
}

.gothburger{
  display: none;
  height: 85px;
  margin-right: 85px;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .nav-container{
    text-align: right;
  }
  .gothburger{
    display: inline-block;
    height: 70px;
    margin-right: 40px;
    margin-top: 19px;
  }
  .nav-item{
    display: none;
    height: 65px;
    margin-right: 40px;
  }
  .nav-item svg{
    height: 55px;
    margin-top: 20px;
  }
}
