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


.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;
    
}
.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-select{
}

.sound-picker{
}
.player-container{
}


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

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

.time-select button{
    background-color: lightgray;
    width: 25%;
    height: 10%;
    border-radius: 10px;
    font-size: 20px;
    font-family: tahoma;
    color: black;
    border: black solid 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px,5px,black;
}

.time-select button:hover{
    background-color:rgba(255, 0, 0, 0);
    font-size: 25px;
}

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

.sound-picker button:hover{
    border: solid black 1px;
}
.sound-picker button:nth-child(1){
    background-color: gray;
}

.sound-picker button:nth-child(2){
    background-color: rgb(194, 152, 15);
}
.sound-picker button img{
    height: 100%;
}