@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}

h3 {
    font-weight: 300;
}

.app {
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} 

.time-select, 
.sound-picker,
.player-container{
    height: 80%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.moving-outline{
    filter: drop-shadow( 1px 1px 5px #0093c0);

}

.player-container {
    position: relative;

}

.player-container svg{
    position: absolute;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    pointer-events: none;
}


.time-display{
    position: absolute;
    bottom: 10%;
    color: white;
    font-size: 50px;
}

video{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    z-index: -10;
}

.time-select button,
.sound-picker button{
    color: #ffffff;
    width: 30%;
    height: 10%;
    background: none;
    border: 2px solid #ffffff;
    font-size: 100%;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    transition: .5s all ease;
}

.time-select button:hover{
    background: #ffffff;
    color: #000000;
}

.sound-picker button{
    width: 120px;
    height: 120px;
    border: none;
    border-radius: 50%;
    padding: 30px;
}


.sound-picker button:nth-child(1){
    background: #4747fcb2;
}

.sound-picker button:nth-child(2){
    background:#e99700c7;
}

.sound-picker button img{
    height: 100%;
}