@import url('https://fonts.googleapis.com/css2?family=Ga+Maamli&family=Oswald:wght@200..700&family=Oswald:wght@200..700&display=swap');
body{
	font-family: "Oswald", sans-serif;
	margin: 0;
}

/* Website Links except the nav */

a:link{
	color: #blue;
}
a:visited{
	color: #red;
}
a:hover{
	color: green;
}
a:active{
	color: orange;
}

/* Navigation */
nav{
	background-color: #488107;
	border-top: 3px solid black;
	border-bottom: 3px solid black;
	padding: 5px;
}
h1{
	color: #FF00FE;
	text-align: center;
}
h2{
	color: white;
	background-color: #488107;
	border-bottom: 3px;
	text-align: center;
}
.logo{
	max-width: 275px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 20px;
	background-color: black;
}
header{
	text-align: center;
	background-color: black;
}
.float-right{
	float: right;
	max-width: 40%;
	height: auto;
	margin-left: 30px;
}
nav ul{
	list-style-type: none;
	text-align: center;
	margin: 8px 0;
	padding: 0;
}
nav li{
	display: inline;
	padding: 5px;
}
nav a{
	text-decoration: none;
}
nav a:link;{
	color: white;
}
nav a:visited{
	color: Black;
}
nav a:hover{
	color: yellow;
}
nav a:active{
	color: red;
}
/* Main */
#home-hero{
	background-image: url(images/guitars.jpg);
	height: 200px;
	background-size: cover;
	background-repeat: no-repeat;
}
#home-hero h1{
	text-align: center;
	color: #FF00FE;
	text-shadow: 2px 2px 2px black;
	margin: 0;
	padding: 10px;
	background-color: rgba(0,0,0,.5);
}
table{
	border-collapse: collapse;
	margin: 0 auto;
	border: 5px solid #000000;
}
tr:nth-child(even) {
	background-color: #eeeeee;
}
th{
	background-color: #FF00FE;
	color: white;
	padding: 10px;
	border-bottom: 5px solid #000000;
}
td{
	border: 1px solid #dddddd;
	padding: 10px;
}
main{
	max-width: 1000px;
	margin: 20px auto;
	padding: 10px;
}
label{
	float: left;
	width: 8em;
	padding-right: 1em;
}
input{
	margin-bottom: 1em;
	display: block;
}
textarea{
	margin-bottom: 1em;
	display: block;
}
type=submit{
	display: block;
	background-color: lightgray;
}
.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}
.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
form{
    padding: 25px;
    border-radius: 6px;
    border-width: 4px;
    border-color: #black;
    border-style: double;
}
/* Footer */
footer{
	border-top: #488107 3px solid;
	text-align: center;
	background-color: #F5F5DC;
}
/*CSS without a media query--applies to all sizes unless overridden*/
h1{
	font-size: 4em;
}

/* CSS Adjustments for Tablets */
@media only screen and (max-width: 1024px) {
	h1{
		font-size: 2em;
	}
}
/* CSS Adjustments for Smartphones */
@media only screen and (max-width: 768px) {
	h1{
		font-size: 1.5em;
	}
}