* {
    margin: 0;
    padding: 0;
    /* font-family: "poppins", sans-serif; */
    box-sizing: border-box;
}

body {
    background-color: #374442;
}

.navbar {
    height: 100%;
    width: 100%;
    padding: 0 5%;
    background: #080008;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: larger;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 140px;
}

.nav-links {
    padding: 28px 0;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
    position: relative;

}

.nav-links li a::after {
    content: '';
    background: #ff3d00;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn {
    background: #880707;
    color: rgb(10, 8, 9);
    padding: 10px 30px;
    border-radius: 3px;
    cursor: pointer;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    /* max-width: 900PX; */
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-family: 'Water Brush', 'cursive';
}

a {
    color: #ffffff;
}


.bottom_links {
    /* background-color: rgb(189, 50, 50); */
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}



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