@font-face {
    font-family: "pixel";
    src: url("/font/Volter__28Goldfish_29.ttf");
}

@font-face {
    font-family: "title";
    src: url("/font/04B_30__.TTF");
}

* {
    font-family: 'pixel', 'Roboto', sans-serif;
    font-size: 18px;
}

h1, h2 {
    margin-top: 30px;
    font-size: 24px;
}

.titlename {
    font-family: 'title';
    vertical-align: middle;
    font-size: 28px;
}

.icon {
    color: black;
    width: 40px;
    height: 100%;
    margin: 0 5px;
}

.arrow {
    border-radius: 100%;
    background-color: #eee;
    position: absolute;
    z-index: 10;
    width: 30px;
    height: 30px;
    top: 80px;
    margin: 0;
    padding: 10px;
    box-shadow: 0px 3px 10px 0px rgba(0,0,0,.3);
    cursor: pointer;
}

.sounds-title-container {
    height: 100%;
    margin: auto;
    cursor: pointer;
    user-select: none;
}

.sounds-title-container p {
    margin: 0;
    vertical-align: middle;
    text-align: center;
}

.sounds-subtitle {
    font-size: 12px;
}

.sound {
    cursor: pointer;
    opacity: 0;
    transition: opacity 1s;
}

.visible {
    opacity: 1 !important;
}

#previous {
    left: 10px;
}

#next {
    right: -10px;
}

#music-container {
    position: absolute;
    overflow: hidden;
    width: 100%;
}

#music-container-container {
    position: relative;
    height: 200px;
    margin: 0 30px;
}

#music {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
    transition: margin-left 0.3s;
}

#music img {
    width:200px;
    height:200px;
    display: inline-block;
    z-index: 1;
}

#music-overlay {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 0;
    width: 100%;
    height: 200px;
    z-index: 5;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,1) 100%);
    pointer-events: none;
}

#content {
    padding: 15px;
}