﻿* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #D9D5C9;
	overflow: auto; /* Allow the body to scroll */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column; /* Stack elements vertically */
}

.container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 20px 0; /* Add padding to top and bottom */
}

.floaty {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

	.floaty img {
		max-width: 100%;
		height: auto;
		margin-top: 20px; /* Add margin to move the image down */
		margin-bottom: 20px;
	}

	.floaty p {
		margin: 0;
		font-size: 2vw; /* Set a base font size relative to viewport width */
	}

	.floaty a {
		font-size: inherit; /* Inherit the font size from the <p> element */
		color: #448AFF;
		border: none;
		display: inline-block;
		text-decoration: none;
		padding: 10px;
		white-space: nowrap;
	}

.video-container {
	position: relative;
	width: 90%; /* Increase width */
	max-width: 1280px; /* Increase maximum width for the video */
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

	.video-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

@media screen and (max-width: 1200px) {
	.floaty p {
		font-size: 1.8vw; /* Adjust the base font size for smaller screens */
	}
}

@media screen and (max-width: 800px) {
	.floaty p {
