* {
    margin: 0;
    padding: 0;
}

nav {
    border-radius: 15px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    background-image: linear-gradient(to right, #4F2384, #0f0f0f);
}

hero-section {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

body {
    background-color: #000000;
}

main {
    margin: 75px 25px;
}

main p {
    color: white;
}


.navbar {

}

hero-section h1 {
    text-align: center;
    position: absolute;
    color: #fff;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
    top: 40%
}

.background-video {
    opacity: 0.85;
    height: 100vh;
}

.logo {
    width: 25vh;
    height: 25vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 25%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
}