/*==========shulker=======*/

.shulker{
    position: fixed;
    display: none;
    align-items: center;
    align-content: center;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background-color: rgb(110,76,110);
    transition-timing-function: linear;
    
    cursor: pointer;
}


.shulker-texture{
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    
    transition: transform 0.5s;
    transition-timing-function: linear;
}

.shulker:hover .shulker-texture{
    transform: rotate(270deg);
}

.arrow{
    z-index: 2;
    position: absolute;
    display: block;
    width: 70%;
    margin-left: 15%;
    transform: rotate(270deg);
    
    transition: margin-left 0.5s, width 0.5s;
}

.shulker:hover .arrow{
    width: 80%;
    margin-left: 10%;
}

@media (orientation:landscape){
    .shulker{
        display: flex;
    }
}

@media (min-width: 630px){
    .shulker{
        display: flex;
    }
}

@media (min-width: 958px){
    .shulker{
        width: 80px;
        height: 80px;
        bottom: 40px;
        right: 40px;
    }
}

@media (min-width: 1920px){
    .shulker{
        width: 128px;
        height: 128px;
    }
}