html, body {
    height: 100%;
}

body {
    background-color: #2e2a29;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0 
}

video {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    transition: filter 2s ease;
}

video:hover {
    filter: sepia(1);
}

#container {
    position: relative;
    width: 100%;
    max-width: 1100px;
}

#staff {
    position: absolute;
    right: 0;
    bottom: 0;
    filter: drop-shadow(2px 2px 4px #f0d6c6);
}

#staff:hover {
    cursor: pointer;
}

.fa-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 36px;
    color: #170F0F;
}

.fa-expand:hover {
    cursor: pointer;
}

.fa-rotate {
    position: absolute;
    font-size: 36px;
    color: antiquewhite;
}

.hidden {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showing {
    opacity: 1;
    transition: opacity 0.3s ease;
}

#note1 {
    position: absolute;
    bottom: 17%;
    right: 70%;
}

#note2 {
    position: absolute;
    bottom: 14%;
    right: 55%;
}

#note3 {
    position: absolute;
    bottom: 10%;
    right: 37%;
}

#note4 {
    position: absolute;
    bottom: 10%;
    right: 22%;
}

#note5 {
    position: absolute;
    bottom: 14%;
    right: 9%;
}

#rotate {
    display: none;
}

@media screen and (max-width: 500px) {
    #rotate {
        display: block;
        height: 100%;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #container {
        display: none;
    }
}

.fa-music {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 36px;
    color: antiquewhite;
    transform: translate(-50%, -50%);
    animation: note 2s infinite alternate ease-in-out;
}

@keyframes note {
    0% {
        opacity: .5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .5;
        transform: scale(1.5);
    }
}