video {
    z-index: 1;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
}


/* // span {
//     display: block;
//     font-size: 20vw;
//     letter-spacing: 1.5vw;
// } */

.text {
    font-family: "Courier";
    font-size: 10px;
    letter-spacing: 3px;
    text-align: left;
    position: absolute;
    top: 25%;
    left: 70%;
    width: 25%;
    /* transform: translate(-50%, -50%); */
    color: rgb(99, 99, 99);
    z-index: 2;
}

.cursor {
    font-family: 'arial';
    font-weight: bold;
    color: rgb(68, 68, 68);
}


/* navigation */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    background-color: #000000ce;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border-left: solid 2px rgb(0, 0, 0);
}

.sidenav a {
    cursor: pointer;
    direction: ltr;
    text-decoration: none;
    font-family: "Courier";
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 15px;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 10px;
    text-align: left;
    text-transform: uppercase;
    visibility: visible;
    padding: 8px 8px 8px 32px;
    color: #f7f7f7;
    display: block;
    transition: 0.3s;
}

a:hover {
    color: rgb(255, 255, 255);
    /* text-decoration: underline; */
    font-size: 18px;
}

.sidenav .closebtn {
    z-index: 2;
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 36px;
    margin-left: 50px;
}


/* This is the style for the burger menu top right */

.container {
    z-index: 2;
    display: inline-block;
    cursor: pointer;
    position: fixed;
    top: 50px;
    right: 50px;
}

.bar1,
.bar2,
.bar3 {
    z-index: 2;
    width: 25px;
    height: 2px;
    background-color: #000000ce;
    margin: 6px 0;
    transition: 0.4s;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
}