/* 
.main {

    background-color: white;
} */

.container {
	width: 100%;
	display: flex;
	flex-direction: row;
	padding: 8%;
}

h1 {
	margin: 0;
	font-size: 2em;
	color: #333;
}

.left-section {
	width: 40%;
	/* background-color: red; */
}

.right-section {
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: green; */
	height: auto;
	/* border-radius: 8px; */
}

p {
	font-size: 1em;
	color: #666;
	margin: 10px 0;
}

.buttons {
	margin-top: 20px;
}

.buttons button {
	padding: 10px 20px;
	font-size: 1em;
	margin-right: 10px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	background-color: red;
	color: white;
}

.buttons button.secondary {
	background-color: orange;
}

iframe {
	width: 80%;
	height: 80%;
	/* max-width: 560px;
    max-height: 315px; */
	border-radius: 8px;
}

/* body {
     min-height: 400vh;
    margin-top: 100px;
    background-color: white;
    color: black;
} */

@media only screen and (max-width: 480px) {
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
}
