@font-face {
    font-family: 'pixel';
    src: url('../src/font/04B03.TTF');
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

a {
    color: inherit;
}

body {
    background-color: #111;
    overflow: hidden;
}

.video-container {
    z-index: -100;
    overflow: hidden;
    max-height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
}

.loading {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 30vh;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    visibility: visible;
    width: 250px;
}

#loadingimagecover {
    width: 250px;
    height: 250px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 250px;
}

img#loadingimage {
    width: 250px;
}

button#state, button#mute {
    position: relative;
    z-index: 100;
}

#wakaba {
    width: 100%;
    height: auto;
    z-index: -100;
    object-fit: cover;
    overflow: hidden;
}

.infocontainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: rgba(0, 0, 0, 0);
    font-family: 'pixel';
    color: #ef85f7;
    visibility: hidden;
    padding: 15px;
    
    user-select: none;
    -moz-user-select: none;
    transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
}

.infocontainer:hover {
    background-color: rgba(10, 10, 10, 0.5)
}

.infocontainer #left {
    flex-grow: 1;
    text-align: left;
}

.infocontainer #right {
    flex-grow: 1;
    text-align: right;
}