body {
    margin: 0;
    background-color: black;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;

    user-select: none; /*  Prevents user from selecting texts */

    --timeline-height: 50px;
}

#video {
    position: absolute;
    top: var(--timeline-height);
    left: 50%;
    transform: translateX(-50%);
    height: calc(100vh - var(--timeline-height));
    width: 100%;
}

#pixi {
    position: absolute;
}

#playControlPanel {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

#playControlPanel div {
    display: inline-block;
}

#playControlPanel p {
    color: white;
    margin: 2px;
}

.floatingButton {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    transition-duration: 5ms;
}

.floatingButton:hover {
    background-color: rgba(0, 0, 0, 1);
}

.floatingButton ion-icon {
    font-size: 40px;
    color: white;
    transition-duration: 5ms;
}

.floatingButton ion-icon:hover {
    font-size: 42px;
}