* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
}

#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: black;
}

#video-bg video {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 100px;
}

#sic {
    font-size: 64px;
    font-style: normal;
    color: white;
    font-family: "Roboto Mono", monospace;
    white-space: nowrap;
}
