@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,700;1,800&display=swap");


.home {
    height: 100vh;
    position: relative;
}
video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 575px) {
	video {
	  width: 100%;
	  height: auto;
	}
  }
  @media (max-aspect-ratio: 16/9) {
	video {
	  width: auto;
	  height: 100%;
	}
  }

  
.home-content {
	position: absolute;
	top: 40%;
	left: 45%;
	-ms-transform: translate(-40%, -45%);
  transform: translate(-40%, -45%);
    color: #fff;
}

.home h1 {
    font-size: 120px;
	font-weight: 800;
    line-height: 1.1;
	letter-spacing: -2px;
}

@media (max-width: 575px) {
    .home h1 {
		font-size: 100px;
	}
  }

.home p {
    font-size: clamp(25px, 4vw, 40px);
    margin-top: 10px;
}

.home-content button {
    display: block;
    font-size: clamp(14px, 1.5vw, 18px);
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    margin: 50px auto 0;
    padding: 12px 20px;
    cursor: pointer;
}

.content {
	width: 450px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 4rem 0;
}

.podcast-text {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 2rem 4rem;
	font-size: 1.5rem;
	font-style: italic;
	text-align: center;
}



#poster {
	position: absolute;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
		rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.media {
	width: 700px;
	height: 400px;
	margin-left: 20px;
	padding-left: 110px;
	background: #8e9eab;


	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
		rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

@media (max-width: 575px) {
	.media {		
		margin-left: 5px;
    }
  }

#title {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 25px;
	padding-right: 40px;
	text-align: left;
}
#subtitle {
	font-size: 1.1rem;
	padding-right: 40px;
	text-align: left;
}

#subtitle,
#title {
	color: white;
	margin: 2rem 3.5rem;
}

@media (max-width: 575px) {
	#subtitle,
	#title,
	option {
		margin: 2rem 5rem;
    }
  }


select {
	background: #212121;
	border: none;
	outline: none;
	color: #eee;
	width: 250px;
	font-family: "Oswald", sans-serif;
	font-size: 18px;
	text-transform: uppercase;
}

.timeline {
	margin-top: 10px;
	margin-bottom: 5px;
	-webkit-appearance: none;
	width: 245px;
	height: 0.4em;
	background-color: #e5e5e5;
	background-size: 0% 100%;
	background-image: linear-gradient(#de5e97, #de5e97);
	background-repeat: no-repeat;
}

.timeline::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
	transition: all 0.1s;
	background-color: #a94672;
}

.timeline::-webkit-slider-thumb:hover {
	background-color: #943f65;
}

.timeline:hover::-webkit-slider-thumb {
	opacity: 1;
}

.timeline::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
}

audio {
	height: 20px;
	width: 250px;
}

#end {
	position: absolute;
	bottom: 67px;
	right: 37px;
	font-family: "Poppins", sans-serif;
	color: #eee;
	background: #252525;
	padding: 2px 10px;
	font-size: 10px;
	margin: 0;
}
