body {
    margin: 0;
    padding: 0;
    background-image: url('Background.mp4');
    background-size: cover; /* This will cover the entire background */
    background-position: center; /* This will center the background */
    background-repeat: no-repeat; /* This will prevent the background from 
repeating */
    background-attachment: fixed; /* This will make the background fixed 
and not scroll */
    height: 100vh; /* This will make the body height equal to the viewport 
height */
    @font-family: 'ArchivoBlack-Regular', sans-serif;
    src: url('/src/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

