html, body {margin: 0; width: 100vw; height: 100vh; overflow: hidden}
body {
  font-family: 'Raleway', sans-serif;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: black;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
canvas {
  position: absolute;
  top:0;
  left:0;
  z-index: -1;
}
.flip-card {
  background-color: transparent;
  width: min(80vw, 80vh);
  height: 80%;
  margin: 0;
  padding: 0;
  perspective: 1000px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.turn .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: rotateX(0deg)
}

.flip-card-back {
  background-color: rgba(0, 0, 0, 0.7);
  transform: rotateY(180deg);
  border: solid;
  border-color: rgb(85, 85, 85);
  border-width: 1px;
  /* border: none; */
}

.flip-card-back, .flip-card-front {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  /* padding: 20px; */
  /* padding: 20px; */
  overflow: hidden;
}

.left {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.right {
  height: 100%;
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

.adastra {
  text-align: center;
  color: gray;
  font-size: 16px;
  font-size: 3.5vmin;
  font-weight: bold;
  word-spacing: normal;
  letter-spacing: 5px;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.contact {
  text-align: center;
  color: gray;
  font-size: 16px;
  font-size: 3.5vmin;
  font-weight: bold;
  word-spacing: normal;
  letter-spacing: 5px;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}

.button-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20%;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-size: 5.6vmin;
  font-weight: bold;
  word-spacing: normal;
  letter-spacing: 5px;
  background: black;
  cursor: pointer;
  border-width: 1px;
  border-color: gray;
  border-style: solid;
  border-left: none;
  border-right: none;
}

.code-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 15%;
  font-size: 16px;
  font-size: 2.3vmin;
  font-weight: bold;
  word-spacing: normal;
  letter-spacing: 5px;
  background: black;
  cursor: pointer;
  border-width: 1px;
  border-color: gray;
  border-style: solid;
  border-left: none;
  border-right: none;
}

/* .shover { */
/*   background: gray; */
/*   color:black; */
/* } */

/* .shover:hover { */
/*   border-color: gray; color: gray; background: black; */
/* } */

.shover {
  border-color: gray; color: gray; background: black;
}

.shover:hover {
  background: gray;
  color:black;
}

.heading {
  text-align: center;
  font-size: 60px;
  font-size: 8.10vmin;
  font-size: 6.8vmin;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 7px;
  word-spacing: 12px;
  text-transform: uppercase;
  color: lightgray;
}

.button_paths {
  height: 50%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

.logodiv {
  height: 40%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

.avatardiv {
  position: relative;
  width: 50%;
}
.avatardiv:before {
  content = "";
  float: left;
  padding-top: 100%;
}
.avatar {
  float: left;
}

@media screen and (max-height: 500px) {
  #logodiv {
    visibility: hidden;
    display: none;
  }
}

.hide {
  visibility: hidden;
  display: none;
  width: 100%;
}

.show {
  visibility: visible;
  display: block;
}

.code-input {
  text-align: center;
  font-size: 28px;
  font-size: 2.3vmin;
  width: 80%;
  height: 80%;
  background: rgba(100, 100, 100, 0.5);
  color: lightgray;
  border: none;
}

.code_div {
  height: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

.info {
  height: 90%;
  width: 80%;
  padding: 5%;
  text-align: justify;
  text-justify: inter-character;
  font-size: 16px;
  font-size: 6.8vmin;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-direction: column;
  color: lightgray;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}

.share {
  height: 100%;
  width: 80%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-direction: column;
  overflow: hidden;
}

h3 {
  text-align: center;
  text-justify: none;
}
