/* Reset default margin and padding */
body, h1, h2, p {
	font-family: Arial, Verdana;
    margin: 10px;
    padding: 12px;
}

/* Style the header */
header {
    background-color: #ADD8E6;
    padding: 20px;
    text-align: center;
}

/* Style the video container */
.video-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio for responsive video */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
