@font-face {
    font-family: 'intanregular';
    src: url('intan-webfont.woff2') format('woff2'),
         url('intan-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:wght@800&display=swap');

*{
    color: white;
    font-family: intanregular;
}

body{
    background-color: #020314;
}

#play-outer-container{
    position: absolute;
    margin-top: 50px;
    left: 50%;
    top: 40%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50vw;
    max-width: 576px;
    min-width: 500px;
}

h1{
    text-align: center;
    color: white;
    display:block;
    margin-left: auto;
    margin-right: auto;
    font-size: 42px;
    margin-bottom: 16px;
}

.play-menu{
    display: none;
    flex-direction: column;
    background-color: #8632E6;
    width: 100%;
    height: 70vh;
    border-radius: 50px;
    padding:30px;
    text-align:center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.display-section{
    display:grid;
    width: 260px;
    width:100%;
    align-items: center;
}

#key-display, #bpm-display-1{
    margin-bottom: 2%;
    display: flex;
    justify-content: left;
    font-size: 40px;
}

#current-chord-display{
    grid-column: 1;
    grid-row: 1;

    font-family: sans-serif;

    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:auto;
    margin-right: auto;
    font-size: 80px;
    margin-bottom: 5%;
    /* TURN INTO CIRCLE */
    height:220px;
    width:220px;
    border-radius: 50%;
    border: 17px solid white;
    grid-column: 1;
    grid-row: 1;
    /* shadow */
    -webkit-box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
    -moz-box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
    box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
    /* transition */
    -webkit-transition:font-size 0.1s;
    -moz-transition:font-size 0.1s;
    -ms-transition:font-size 0.1s;
    -o-transition:font-size 0.1s;
    transition:font-size 0.1s;
}

#current-chord-display.current-chord-display-anim{
    font-size: 100px !important;
    -webkit-transition:font-size 0s;
    -moz-transition:font-size 0s;
    -ms-transition:font-size 0s;
    -o-transition:font-size 0s;
    transition:font-size 0s;
}

#next-chord-display{
    grid-column: 1;
    grid-row: 1;

    font-family: sans-serif;
    position:relative;
    transform: translate(200%, 85%);

    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:auto;
    margin-right: auto;
    font-size: 28px;
    margin-top: 5%;
    margin-bottom: 5%;
    /* TURN INTO CIRCLE */
    height:70px;
    width:70px;
    border-radius: 50%;
    border: 8px solid white;

    /* shadow */
    -webkit-box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
    -moz-box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
    box-shadow: 8px 8px 5px -2px rgba(0,0,0,0.44);
}

#curr-time{
    font-size: 40px;
    margin: 10px auto 30px auto;
}

.slider-container{
    display: grid;
}

#slider-cover{
    grid-column: 1;
    grid-row:1;
    z-index: 2;
    width: 100%;
}

.slider{
    z-index: 1;
    grid-column: 1;
    grid-row:1;
    margin: 3% auto;
    width: 70%;
    accent-color: white;
    background-color: #020314;
}

.play-menu-buttons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    bottom: 30px;
}

.play-menu-buttons div{
    background-color: white;
    color: #8632E6;
    width: 40%;
    padding: 7px;
    margin-left: 4px;
    margin-right: 4px;
    font-size: 25px;
    border-radius: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    align-self: auto;
}

.start-menu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #8632E6;
    width: 100%;
    height: 70vh;
    border-radius: 50px;
    padding:30px;
    text-align:center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.inputs, option{
    color:#8632E6;
}

.inputs{
    border: 2px solid #020314;
    border-radius: 5px;
}

.inputs:active{
    background-color: #B332E6 !important;
    color: white !important;
}

#bpm-display{
    width: 48px;
}

#choose-duration input{
    width: 35px;
}

.start-menu div{
    margin: 10px auto;
    padding: 7px;
    font-size: 25px;
    width: 90%;
    border-radius: 25px;
    border: 8px solid white;
}

.start-menu #start{
    background-color: white;
    color: #8632E6;
    transition: 0.3s;
    cursor: pointer;
}

.start-menu #start:hover{
    background-color: #B332E6;
    border-color: #B332E6;
    color: white;
}

.play-menu-buttons div:hover{
    background-color: #B332E6;
    color: white;
}

.pause-toggle{
    background-color: #B332E6 !important;
    color: white !important;
}

#tap-bpm{
    color: #8632E6;
    text-align: center;
    width: 45px;
    background-color: rgb(212, 212, 212);
}

.bpm-dots{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.bpm-dots div{
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 20px;
}