body {
	background-image: url('C:/Users/mine/Pictures/wp2785286.png');
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	font-family: Arial, sans-serif;
	color: white;
	margin: 0;
	overflow: hidden;	
}

button {
	background: rgba(0, 0, 0, 0.5);
	font-weight: bold;
	font-size: clamp(1rem, 2vw, 2rem);
	color: white;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
}

.container {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.controls {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
}

.content {
    text-align: center;
    max-width: 80%;
}

.content h1 {
    font-size: clamp(2rem, 3vw, 4rem);
    margin-bottom: 10px;
}

.content p {
    font-size: clamp(1rem, 1.5vw, 2rem);
    line-height: 1.5;
}

.section {
	margin-top: 20vh;
	/* border: 1px solid black;	 */
	width: 100vw;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,.5);
	/* font-size: 2rem; */
	font-size: clamp(1rem, 2vw, 2rem);
}

#main {
	display: flex;
	width: 400vw;
	height: 100vh;
	transition: transform 0.5s ease;
}

