@font-face {
    font-family: 'caliban';
    src: url('Caliban.woff') format('woff');

    font-weight: normal;
    font-style: normal;
}


body {
    font-family: "caliban", sans-serif;
    background-color: #000;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10vh;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.7;
}

.background-container{
    position: fixed;
    top: 0;
    left:0;
    bottom: 0;
    right: 0;
}


.album-container {
    background-color: rgba(66, 72, 75, 0.3);
    border: 1px solid #111;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

img {
    width: 100%;
    border-radius: 10px;
}

.tracklist {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.tracklist li {
    padding: 10px;
    margin-bottom: 5px;
    background-color: rgba(41, 48, 51,0.7);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    font-family: "caliban", sans-serif;
    font-size: 1rem;
    color: #cccccc;
}

.tracklist li:hover {
    background-color: rgba(170, 170, 170,0.7);
    color: #293033;
}

.tracklist li .indicator {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    display: inline-block;
}

.indicator.playing {
    background-color: #3498db;
    border-radius: 50%;
}

.indicator.paused {
    background-color: #e67e22;
    border-radius: 50%;
}

.indicator.stopped {
    background-color: rgb(53, 57, 59);
    border-radius: 50%;
}

.controls {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.controls button {
    padding: 10px;
    border: none;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.controls button:hover {
    background-color: #2980b9;
}


@media (max-height: 1000px) {
    .album-container {
        scale: 0.8 0.8;
        padding: 15px;
        font-size: 0.8rem;
    }

}

.imp-container{
    width: 430px;
    height: 180px;
    position: absolute;
    right: -250px;
    bottom: 10px;
    transition: all 0.8s ease-in-out;
    display: flex;
}

.imp-container:hover{
    right: -5px;
}

.logo{
    width: 180px;
    height: 180px;
    background-image: url("img/pc.png");
    background-size: cover;
    opacity: 0.6;
}

.imp{
    padding-top: 20px;
    margin-left: 10px;
    width: 250px;
    height: 180px;
    font-family: "caliban", sans-serif;
    font-size: 1rem;
    opacity: 0.7;
}

.cc{
    width: 160px;
    height: 70px;
    position: absolute;
    left: 20px;
    bottom: 10px;
    background-image: url("img/by.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
}

.cube {
    animation: 16s spin linear infinite;
    position: fixed;
    transform-style: preserve-3d;
    width: 100px;
    height: 100px;
    top: 50px;
    right: 50px;
    cursor: pointer;
    transition: ease-in-out;
}

.cube div {

    border: 2px solid rgba(54, 148, 248, 0.5);
    box-shadow: 0 0 2.2em rgba(230, 236, 252, 0.6);
    display: block;
    height: 2em;
    position: fixed;
    width: 2em;
}

.cube :before {
    background: radial-gradient(ellipse at center, rgba(50,50,80,0) 30%, rgba(203, 187, 200, 0.2) 100%);
    height: 100%;
    position: fixed;
    width: 100%;
}
.cube:hover *_ {
    transition: all 1s ease-in;
}

.cube:hover ._back{
    transform: rotateX(180deg) translateZ(2em);
}
.cube:hover ._bottom{
    transform: rotateX(-90deg) translateZ(2em);
}
.cube:hover ._front{
    transform: rotateY(0deg) translateZ(2em);
}
.cube:hover ._left{
    transform: rotateY(-90deg) translateZ(2em);
}
.cube:hover ._right{
    transform: rotateY(90deg) translateZ(2em);
}
.cube:hover ._top{
    transform: rotateX(90deg) translateZ(2em);
}


._back, ._bottom, ._front, ._left, ._right, ._top {
    transition: all 1s ease-in;
}

._back {
    transform: rotateX(180deg) translateZ(1em);
}
._bottom {
    transform: rotateX(-90deg) translateZ(1em);
}
._front {
    transform: rotateY(0deg) translateZ(1em);
}
._left {
    transform: rotateY(-90deg) translateZ(1em);
}
._right {
    transform: rotateY(90deg) translateZ(1em);
}
._top {
    transform: rotateX(90deg) translateZ(1em);
}




@keyframes spin {
    from  {
        transform: rotateX(0) rotateY(0);
    }
    to {
        transform: rotateX(360deg ) rotateY(360deg );
    }
}
#jump{
    cursor: pointer;
}
