* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    height: 100dvh;
    background-color: rgba(1, 3, 17, 1);
    background-image: url("./img/background_desktop.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#logo {
    width: 50%;

}

#background-video {
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    opacity: 0.1;
}