/* general */

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

.topnav {
  background-color: white;
  height: 100px;
  width: 100%;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(113, 113, 113, 0.23);
  -moz-box-shadow: 0px 1px 1px 0px rgba(113, 113, 113, 0.23);
  box-shadow: 0px 1px 1px 0px rgba(113, 113, 113, 0.23);
  position: relative;
}

.content {
  background: rgba(248, 80, 50, 1);
  background: -moz-linear-gradient(top, #ffcf21 0%, #ff7703 100%);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #ffcf21),
    color-stop(100%, #ff7703)
  );
  background: -webkit-linear-gradient(top, #ffcf21 0%, #ff7703 100%);
  background: -o-linear-gradient(top, #ffcf21 0%, #ff7703 100%);
  background: -ms-linear-gradient(top, #ffcf21 0%, #ff7703 100%);
  /* background: linear-gradient(to bottom, #4886e3 0%, #9ee2ff 100%); */
  background: linear-gradient(to bottom, #ff21c5 0%, #ffcf03 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='ffcf21', endColorstr='#ff7703', GradientType=0 );
  overflow: hidden;
  position: relative;
}

.footer {
  background-color: black;
  height: 250px;
  width: 100%;
  padding-top: 30px;
}

.maxwidth {
  max-width: 1600px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.destilly-logo {
  width: 60px;
  margin: 20px;
  float: left;
  position: fixed;
}

.stack4-logo {
  margin: auto;
  display: block;
  margin-top: 4vh;
  width: 90vw;
  max-width: 446px;
  position: relative;
  margin-bottom: 4vh;
}

.store-logo-container {
  margin: auto;
  text-align: center;
}

.appstore-logo {
  /* margin-top: 2vh;
  margin-bottom: 2vh; */
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  height: 60px;
}
@media only screen and (max-width: 500px) {
  .appstore-logo {
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    height: 16vw;
    /* width: 200px; */
  }
}

.googleplay-logo {
  /* margin-top: 2vh;
  margin-bottom: 2vh; */
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  height: 60px;
}
@media only screen and (max-width: 500px) {
  .googleplay-logo {
    margin-top: 0.5vh;
    margin-bottom: 0.5vh;
    height: 16vw;
    /* width: 200px; */
  }
}

@media only screen and (max-width: 500px) {
  .store-logo {
    width: 40vw;
  }
}

.gameplay {
  margin: auto;
  display: block;
  width: 100vw;
  max-width: 1300px;
  position: relative;
}

@media only screen and (max-width: 500px) {
  .gameplay {
    width: 153vw;
    left: -24vw;
  }
}

.clouds {
  margin: auto;
  display: block;
  width: 160%;
  position: absolute;
  top: -9787px;
  bottom: -10056px;
  left: -9966px;
  right: -9989px;
  z-index: 0;
}

@media only screen and (max-width: 980px) {
  .clouds {
    margin: auto;
    display: block;
    width: 290%;
    position: absolute;
    top: -10326px;
    bottom: -10056px;
    left: -9980px;
    right: -9989px;
    z-index: 0;
  }
}

.nav-item {
  margin: 40px;
  float: right;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.home {
  width: 100%;
}

.container {
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.share-icon {
  width: 53px;
  margin: 10px;
}

.icons-center {
  margin: auto;
  text-align: center;
}

.hvr-share {
  /* display: inline-block; */
  /* vertical-align: middle; */
  /* -webkit-transform: perspective(1px) translateZ(0); */
  /* transform: perspective(1px) translateZ(0); */
  /* box-shadow: 0 0 1px rgba(0, 0, 0, 0); */
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  /* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08); */
}
.hvr-share:hover,
.hvr-share:focus,
.hvr-share:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.08); */
}

.copyright {
  color: #666;
  text-align: center;
  font-family: "Barlow", sans-serif;
  margin: 20px;
}

.emoji-1 {
  position: absolute;
  top: 50%;
  right: auto;
  left: 15px;
  z-index: 1;
  width: 50%;
}

.hover1 {
  -webkit-animation: hover 3s infinite ease-in-out;
}
@-webkit-keyframes hover {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
