/* Reset default margin and padding for the body */
body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide horizontal scrollbar */
}

/* Style the video container to cover the entire viewport */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place the video behind other content */
}

/* Style the video element */
#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain video aspect ratio and cover the container */
}

/* Center content on top of the video */
/* You can add your content inside this container div */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}


@font-face {
  font-family: "2f2f";
  src: url('fffontitalics.ttf') format('truetype');
}

body {
	font-family: "2f2f";
      	margin: 0;
} 

h2 {
font-size: 10vw;
text-align: center;
 position: absolute;
  bottom: 0; 
color: rgba(165, 141, 141, 0.4);
}
