@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100&display=swap");
html {
  scroll-behavior: smooth; }
body{
  font-family:   Helvetica, sans-serif;
  font-size: 14px;
  overflow: hidden;
  background: black;
  color: white;
  font-weight: 300;
}
a{
  text-decoration: none;
}
.container{
  width: 100%;
  height: 100vh;
  position: relative;
}
.wrap{
  position: absolute;
  margin: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  z-index: 9;
}
.img{
  width: 90%;
  max-width: 300px;
}
.greeting{
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 25px;
}
.btn{
  width: 80px;
  border: 1px solid white;
  padding: 10px 20px;
  transition: 0.3s;
  text-decoration: none;
  background: white;
  color: black;
}
.btn:hover{
  width: 200px;
  background: black;
  color: white;
}
.video{
  position: absolute;
  bottom: 0;
}
.dot-video:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  content: '';
  display: block; 
  background: url('./dots.png');
  opacity: 0.3;
}

.dot-video {
  width: 100%;
  height: 100%;
  position: relative; }
