*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}


.animation-container{
    position: relative;
    width: 10rem;
    aspect-ratio: 1 / 1;
}


.instrument{
    width: 100%;
}

.btns{
    padding: 1rem;
    display: flex;
    width: 40%;
    justify-content: space-around;
}

.btn{
    color: white;
    background-color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    cursor: pointer;
}