* {
	font-family: Impact;
    font-size: xx-large;
    letter-spacing: 1px;
}

body {
	width: 100%;
    height: 100vh;
    margin: auto;
    background-color: #272a36;
    color: white;
}

select {
	margin-bottom:30px;
	border-radius: 5px;
    background-color: #800020;
    border: 2px solid gold;
    padding: 5px 10px;
    color: white;
	cursor: pointer;
}

button[type=submit] {
	border-radius: 5px;
    background-color: gold;
    border: 2px solid #800020;
    padding: 5px 10px;
    color: #800020;
	cursor: pointer;
}

input[type="checkbox"] {
	display:none;
}

input[type="checkbox"]:checked + div {
    display: block;
}

.header {
	height:100px;
    width: 100%;
    border-bottom: 4px solid gold;
	background-color: #800020;
	display:inline-flex;
	align-items:center;
	justify-content:space-between;
}

.title {
    padding-left: 20px;
}

.logo {
	padding-right:20px;
}

.content {
	width: 100%;
	text-align:center;
}

.instructions {
	padding: 0 20px;
}

.accordion {
	display:block;
	background-color: #272a36;
	color: white;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 18px;
	transition: 0.4s;
	border-bottom: 2px solid gold;
}

.accordion:hover {
	background-color: gold;
	color: #800020;
}

.panel {
	background-color: #62646e;
    display: none;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.video {
	width:560px;
	height:315px;
	max-width:100vw;	
}