* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

#hero {
    
    height: 100vh;
    width: 100vw;
    color: Black;
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

#hero video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

#CopyRight {
    
    height: 100vh;
    width: 100vw;
    color: Black;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}