/* Load font */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');


/* Overlay effect */

.noise {
    z-index: 1;
}

.fixed-fluid {    
    top: 0;
    left: 0;
    opacity: .12;
    width: 100%;    
    height: 100%;
    position: absolute;
    pointer-events: none;    
}

.dot {
    background: transparent url(../logo/dot.png) repeat 0 0;
    top: 0;
    left: 0;
    margin: 0;
    opacity: .9;
    padding: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Content */

html {
    height: -webkit-fill-available;
}

body {
    background-color: #000;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 98vh;
    background-position: center top;
}
.dexosmecher {
font-family: 'Ubuntu', sans-serif;
  position: absolute;
  top: -120%;
  color: #ccc;
  width: 90%;
  text-align: center;
  font-size: 34px;

}
.totopsunt {
    font-family: 'Ubuntu', sans-serif;
  position: absolute;
  color: #ccc;
  bottom: 8px;
  right: 16px;
  z-index: 2;
  font-size: 18px;
}

/* Pre */

#enter {    
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 1;
    width: 100%;
    height: 100vh;
    cursor: pointer;
    position: fixed;
    text-align: center;
    background-color: black;
    transition: opacity .5s;
}

.begin {
    top: 50%;
    left: 50%;
    color: #fff;
    position: absolute;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
}



/* Post */

#main {
    z-index: 2;
}

#video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  object-position: center center;
  min-height: -webkit-fill-available;
}

.social img {
  z-index: 2;
  height: 60px;
  color: #fff;
  padding: 15px 15px;
  width: 30px;
  height: 30px;
  border:1px solid #3a74bf;
  background: url(img/duck.png) no-repeat;
  -moz-box-shadow: 0px 3px 2px #3a74bf;
  -webkit-box-shadow: 0px 3px 2px #3a74bf;
  box-shadow: 0px 6px 5px #3a74bf;
  -moz-border-radius:30px;
  -webkit-border-radius:30px;
  border-radius:10px;
  margin-right: 14px;
  transition: ease-out .1s;

}

.social img:hover {
    transform: scale(1.37);
    transition: ease-in .1s;
    transition: ease-out .2s;
    background: #fff;
}

.phone {
  display: none;
}


/* Media queries */

@media(max-width: 768px) {

  /* #enter temp until vid works */
  #enter {
    display: none!important;
  }

  .pc {
    display: none;
  }

  .phone {
    display: block;
  }

  .social {
    text-align: center;
    padding: 20px 5px;
    flex-direction: column;
    background-position: center;
  }

  .social img {
    padding: 20px 15px;
  }

  #video {
    display: none!important;
  }

}