/* CSS Reset */

* {
  font-family: "Be Vietnam Pro", sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}


.home_image{
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home_txt {
  z-index: 999;
  position: absolute;
  color: white;
  top: 20px;
  left: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 24px;
}

.video_bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110%;
  background-image: url('./bg.png');
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center;
}