
body {
    font-family: 'Nunito', sans-serif;
}

#switcher_box {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: -150px;
    width: 300px;
    display: flex;
    justify-content: center;
    z-index: 10;
}
#switcher_button {
    padding: 10px 20px;
    background: #eee;
    cursor: pointer;
    box-shadow: 4px 4px 1px 1px black;
}

#video {
    width: 100vw;
    z-index: 1;
    position: relative;
}

#version_box {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
}

#app {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

#slideshow {
    width: 100vw;
    height: calc(100vh + 36px);
}




