*{
    margin: 0;
    padding: 0;
    font-family: "permanent marker", cursive;
    cursor: none;
}

body{
    /* cursor: url("Assets/Sprites/cursor.png") 95 95, auto; */
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.dot, .outline{
    background-color: #f8f826;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
}

.dot{
    height: 20px;
    width: 20px;
}

.outline{
    height: 50px;
    width: 50px;
    opacity: 0.5;
}

.container{
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: -100px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
}

.background{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.logo{
    height: 220px;
    width: 550px;
    object-fit: cover;
    position: absolute;
    top: 130px;
    left: 480px;
    z-index: 100;
    scale: 1.2;
}

.musicPlayer{
    position: absolute;
    top: 400px;
    right: 15px;
    z-index: 1;
    transition: 0.1s ease-in-out;
}
.musicPlayerr{
    position: absolute;
    top: 400px;
    left: 15px;
    z-index: 1;
    transition: 0.1s ease-in-out;
}
.home{
    top: 330px;
}
.homee{
    top: 330px;
}
.musicPlayer:hover{
    scale: 1.2;
}
.musicPlayerr:hover{
    scale: 1.2;
}

.side{
    position: absolute;
    top: 370px;
    height: 100px;
    transition: 0.1s ease-in-out;
    top: 420px;
    left: 1310px;
    rotate: 90deg;
}

.sidee{
    position: absolute;
    top: 370px;
    height: 100px;
    transition: 0.1s ease-in-out;
    top: 420px;
    left: -130px;
    rotate: -90deg;
}
.side:hover{
    scale: 1;
}
.i{
    top: 470px;
}
.ii{
    top: 470px;
}
.set{
    top: 540px;
}
.sett{
    top: 540px;
}

/* For headings */
.play-heading{
    font-size: 50px;
    position: absolute;
    top: 10px;
    left: 100px;
    pointer-events: none;
    color: #f4b35e;
}

.options-heading{
    left: 60px
}

.setting-heading{
    left: 60px;
}

/* For img */
.play{
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    z-index: -1;
}


/* For main buttons divs*/
.play-button {
    height: 100px;
    width: 100px;
    position: absolute;
    top: 370px;
    left: 600px;
    transition: transform 0.1s ease-in-out;
    transform-origin: center;
}

.play-button:hover {
    transform: scale(1.1) translate(-10%, 0%);
}

.options-button{
    top: 480px;
}

.setting-button{
    top: 590px;
}

.options-board{
    height: 550px;
    z-index: 1000;
    position: absolute;
    top: 160px;
}

.close{
    z-index: 10000;
    position: absolute;
    top: 200px;
    left: 650px;
}

.o-board{
    position: relative;
    top: -350px;
    left: -350px;
    z-index: 10000;
    transform: scale(0) translate(0, -10%);
    transform-origin: center;
}

.bounce{
    animation: bounce 0.3s forwards;
}
@keyframes bounce {
    0%{
        transform: scale(0) translate(-10%, 0);
    }
    20%, 50%, 80%, 100% {
        transform: scale(1) translate(-10%, 0);
    }
    40% {
        transform: scale(1.1) translate(-10%, 0);
    }
    60% {
        transform: scale(0.9) translate(-10%, 0);
    }
  }

  .remove{
    animation: remove 0.3s forwards;
  }

  @keyframes remove {
    0%{
        scale: 1;
    }
    100%{
        scale: 2;
    }
  }