html,
body {
  background: black;
  width: 100vw;
  border: 0;
  /* border : solid 1px yellow; */
  padding: 0;
  margin: 0;

  display: flex;
  overflow: hidden;

  height: calc(100% - constant(safe-area-inset-bottom));
  height: calc(100% - env(safe-area-inset-bottom));

  height: -ms-calc(100% - constant(safe-area-inset-bottom));
  height: -ms-calc(100% - env(safe-area-inset-bottom));

  height: -moz-calc(100% - constant(safe-area-inset-bottom));
  height: -moz-calc(100% - env(safe-area-inset-bottom));

  height: -webkit-calc(100% - constant(safe-area-inset-bottom));
  height: -webkit-calc(100% - env(safe-area-inset-bottom));
}

html {
  touch-action: none;
  user-select: none;
  text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
}

@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  html,
  body {
    height: calc(100% - constant(safe-area-inset-bottom) + 10px);
    height: calc(100% - env(safe-area-inset-bottom) + 10px);

    height: -ms-calc(100% - constant(safe-area-inset-bottom) + 10px);
    height: -ms-calc(100% - env(safe-area-inset-bottom) + 10px);

    height: -moz-calc(100% - constant(safe-area-inset-bottom) + 10px);
    height: -moz-calc(100% - env(safe-area-inset-bottom) + 10px);

    height: -webkit-calc(100% - constant(safe-area-inset-bottom) + 10px);
    height: -webkit-calc(100% - env(safe-area-inset-bottom) + 10px);
  }
}

@supports not (-webkit-touch-callout: none) {
  /* CSS for other than iOS devices */
}

#wrap {
  background: black;
  overflow: hidden;
}

#game {
  background: black;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

.middle {
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

hr {
  margin: auto;
  width: 40%;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

:root {
  /* Base font size */
  font-size: 10px;

  /* Set neon color */
  --neon-text-color: #00dae8;
  --neon-border-color: #00dae8;
}

/* for unity progress */
.iner-wrapper {
  padding: 0 30px;
  height: auto;
}
.skill-bar .info span {
  display: inline-block;
  margin: 2px 0px;
  font-size: 18px;
  font-weight: 500;
  color: #95afc0;
}

.glitter {
  box-shadow: 0 0 0.5rem #fff, inset 0 0 0.5rem #fff, 0 0 2rem #9936f5,
    inset 0 0 2rem #9936f5, 0 0 4rem #9936f5, inset 0 0 4rem #9936f5;
}

.cardgif {
  width: 42rem;
  position: absolute;
  z-index: -1;
  top: -52px;
  left: 13%;
}

@keyframes animate {
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.html span {
  width: 100%;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.iconContainer {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-flow: column;
}

.iconContainer p {
  font-family: "open sans";
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 0;
  font-size: 14px;
  opacity: 0;
}

.phone {
  position: relative;
  /*left: 50%;*/
  margin-bottom: -30px;
  width: 0;
  height: 0;
  border: 0 solid #000;
  background: #555;
  border-radius: 10px;
  box-sizing: border-box;
}

.phone i {
  text-align: center;
  width: 100%;
  line-height: 120px;
  font-size: 30px;
  color: #454545;
  opacity: 0;
}

@media only screen and (max-width: 500px) {
  .overlay {
    display: block;
  }

  .overlay .phone {
    animation: sizeIncrease 0.5s forwards ease,
      borderIncrease 0.5s 0.5s forwards ease, rotateRight 0.7s 1s forwards ease;
  }

  .overlay .phone i {
    animation: fadeIn 0.5s 0.8s forwards ease;
  }

  .overlay .iconContainer p {
    animation: fadeIn 0.5s 1.3s forwards ease;
  }
}

/* KEYFRAMES
------------------------------------------- */
/* Animate width + height */
@keyframes sizeIncrease {
  0% {
    width: 0;
    height: 10px;
  }
  50% {
    width: 100px;
    height: 10px;
  }
  100% {
    width: 100px;
    height: 160px;
  }
}
/* Add borders */
@keyframes borderIncrease {
  100% {
    border-width: 20px 10px;
  }
}

/* fade-in  */
@keyframes fadeIn {
  100% {
    color: #ffff;
    opacity: 1;
  }
}

/* Rotate device */
@keyframes rotateRight {
  100% {
    transform: rotate(90deg);
  }
}

@media (max-width: 900px) {
  .cardgif {
    width: 80%;
    top: -34px;
    left: 10%;
  }
  h1 {
    font-size: 4.5rem;
    padding: 2.5rem;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .cardgif {
    width: 80%;
    top: -30px;
    left: 10%;
  }
  h1 {
    font-size: 3.5rem;
    padding: 2.5rem;
    margin-bottom: 0;
  }
}

#bgimg,
#wrap {
  font-family: "Exo 2", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #000; */
  width: 100vw;
  min-height: 100%;
}
