@import url('https://msfpt.github.io/assets/css/print.css');

@font-face {
  font-family: 'Poppins-Light';
  src: url(../font/Poppins-Light.ttf);
}

body{
  padding: 0;margin: 0;
  width: 100vw;height: 100vh;
  background: linear-gradient(  33deg,  #040408 ,  #0d0d0f ,  #040408 );
  color: rgba(243 236 236 / 97%);
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  transition: all .7s ease-in-out;
}

#video{
  border-radius: 13pt;
  height: auto;
  width: calc(320px + 25vw);
}

#video:fullscreen{
  border-radius: 0 !important;
}

.btn{
  background-color: rgb(250 250 250);
  color: rgb(0 0 0);
  border-radius: 7pt;
  border: 0;
  outline: none;
  width: calc(5rem + 2vw);
  height: calc(2.5rem + 1vw);

  font-family: 'Poppins-Light';
  font-size: calc(11.4pt + .2vw);
  letter-spacing: 1px;
  font-weight: bold;

  box-shadow: 
        0 0 1.5px rgba(255 255 255 / 60%) ,
  inset 0 0 4pt rgba(40 40 40 / 20%)
  !important ;
  cursor: pointer;
}

.btn:hover{
  background-color: rgb(238 238 238);
  color: rgb(2 2 2);
}

.btn:active{
  background-color: rgb(227 227 227);
  color: rgb(3 3 3);
}

.hide{
  display: none;
}

*{
  scroll-behavior: smooth;
  text-decoration: none;
  user-select: none;
  -webkit-user-drag: none;
  user-zoom: none;
  outline: none;
}

::selection{
  background: transparent;
}