@keyframes BgToNight {
    from {
        background-color: transparent;
    }
    to {
        background-color: #888;
    }
}

.playTransitionToDay {
    animation: BgToNight 3s ease-in-out 0s 1 reverse;
}

.playTransitionToNight {
    animation: BgToNight 3s ease-in-out 0s 1 forwards;
}

.font-mreaves {
    font-family: "mr-eaves-xl-modern", sans-serif;
}

.namelink {
    margin-left: 10px;
}

.button {
    cursor: pointer;
}

.button:hover {
    text-shadow: 1px 1px 1px #BBB;
}

.tbselected {
    background-color: #000;
    color: #FFF;
}

.bgsetting {
    margin-left: 20px;
}

body {
    margin: 0;
    overflow: hidden;
}

span {
    font-family: "mr-eaves-xl-modern", sans-serif;
}

#bgcontainer {
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

#namecontainer {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 50px;
    left: 0;
}

#namename {
    font-size: 54px;
}

#namespacer {
    width: 100%;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: rgb(128, 128, 128);
}

#namelinks {
    font-size: 20px;
}

#bgsettings {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 15px;
}

#namelinkscontentspacer {
    display: inline-block;
    width: 100px;
}

#content {
    display: flex;
    flex-direction: column;
    pointer-events: none;
    position: fixed;
    top: 150px;
    left: 100px;
    right: 100px;
    bottom: 250px;
}

#muvicscreenshot {
    width: 300px;
}

#contenttabs {
    display: flex;
    flex-direction: row;
    height: 50px;
    flex-shrink: 0;
}

.prototypes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contenttab {
    width: 30px;
    height: 30px;
    background-size: cover;
    margin-right: 20px;
    padding: 3px;
}

.contenttab:hover {
    border: 3px solid #821D7B;
    padding: 0;
}

.prototypeimg {
    width: 200px;
    height: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 3px;
    overflow: hidden;
}

.prototypeimg:hover {
    border: 3px solid #821D7B;
    padding: 0;
}

.fitimage {
    max-width:100%;
    max-height:100%;
}

.fitimagewidth {
    max-width:100%;
}

#sectioncontent {
    display: flex;
    flex-direction: row;
}

#contentselectorbarspacer {
    display: flex;
    flex-direction: row;
    width: 30%;
}

#contentselectorbarcontent {
    width: 70%;
    display: flex;
    flex-direction: row;
    margin-right: 25px;
    margin-left: 25px;
}

#imagecontent {
    width: 30%;
    text-align: right;
    margin-top: 16px;
}

#maincontent {
    max-width: 785px;
}

#maincontentcontainer {
    width: 70%;
    margin-right: 25px;
    margin-left: 25px;
    overflow-y: auto;
    pointer-events: all;
}

.content-visible {
    opacity: 1.0;
    transition: opacity 1s;
    pointer-events: all;
}

.content-hidden {
    opacity: 0.0;
    transition: opacity 1s;
}