body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(0, 0, 0); /*배경색*/
}

:root {
    --main-dark-theme: rgba(0, 0, 0, 0.3);
    --alt-dark-theme: rgb(0, 0, 0);
}

body {
    font-family: arial;
    color: rgb(255, 255, 255);
}


video {
    position: relative;

    /*출력되는 비디오 사이즈*/
    max-height: 1080px;
    max-width: 100vw;
    height: calc(100vh - 100px);
    width: auto;

    object-fit: cover;
}

#video-container {
    position: fixed; 
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    background-color: rgba(172, 23, 23, 0);

}
