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

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

}

.time-select, .sound-picker{
	display: flex;
	flex-direction: column; 
	height: 80%;
	flex: 1;
	justify-content: space-evenly;
	align-items: center;
}
.time-display{
	position: absolute;
	bottom: 10%;
	color: white;
	font-size: 50px;
}




.player-container{
	height: 80%;
	display: flex;
	justify-content: space-evenly;
	
	align-items: center;
	flex:1;
	flex-direction: column;
	position: relative;

}
.player-container svg{
	position: absolute;
	height: 50%;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-90deg);
	pointer-events: none;
}
video{
	position: fixed;
	top: 0%;
	height: 100%
	width: 100%;
	left: 0%;
	z-index: -10;
}
.time-select button,
.sound-picker button {
	color: white;
	width: 30%;
	height: 10%;
	background: none;
	border: 2px solid white;
	cursor: pointer;
	border-radius: 5px;
	font-size: 20px;
	transition: all 1.5s ease;
}
.time-select button:hover{
	color: black;
	background: white;
	transform: scale(1.2,1.2);
}

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

}
.sound-picker button:nth-child(1){
	background: #4972a1;
}
.sound-picker button:nth-child(2){
	background: #a14f49;
}
.sound-picker img{
	height: 100%;
}
@media only screen and (max-width: 700px) {
	.time-select button,
.sound-picker button {
	font-size: 10px;
}
.time-display{
	font-size: 25px;
}
.sound-picker button{
	border: none;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	padding: 30px;

}
video {
        display: none;
    }
    body {
        background: url('./video/rain.gif');
        background-size: cover;
    }
  
}
@media (min-aspect-ratio: 16/9) {
    video {
        width:100%;
        height: auto;
    }
}
@media (max-aspect-ratio: 16/9) { video {
        display: none;
    }
    body {
        background: url('./video/rain.gif');
        background-size: cover;
    }
}
@media (max-width: 767px) {
    video {
        width:auto;
        height: 100%;
    }
   
}