@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

body{
	font-family: 'Roboto', serif;
	margin: 0;
}

/* Website Links except the nav */
a:link{
	color: forestgreen;
}

a:visited{
	color: blue;
}

a:hover{
	color: yellow;
}

a:active{
	color: red;
}

header{
	text-align: center;
	background: rgb(255,0,227);
	background: linear-gradient(90deg, rgba(255,0,227,1) 33%, rgba(255,184,29,1) 100%);
}

nav{
	background: rgb(47,255,0);
	background: linear-gradient(90deg, rgba(47,255,0,1) 11%, rgba(12,226,214,1) 30%, rgba(242,0,244,1) 71%, rgba(255,184,29,1) 100%);
	border-top: 3px solid black;
	border-bottom: 3px solid black;
	padding: 5px;
}

/* Navigation */
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: blue;
}

nav a:visited{
	color: blue;
}

nav a:hover{
	color: white;
}

nav a:active{
	color: darkred;
}

/* Main*/
main{
	max-width: 1000px;
	margin: 20px auto;
	padding: 10px;
}


/* Footer */
footer{
	background: rgb(244,0,0);
	background: linear-gradient(90deg, rgba(244,0,0,1) 0%, rgba(245,125,2,1) 16%, rgba(235,255,0,1) 32%, rgba(0,255,17,1) 48%, rgba(0,255,253,1) 60%, rgba(0,17,255,1) 72%, rgba(232,0,255,1) 84%, rgba(255,29,177,1) 100%);
	border-top: purple 3px solid;
	text-align: center;
}

h1{
	text-align: center;
	background-color: lightgray;
	color: lightskyblue;
	border-top: 3px solid black;
	border-left: 2px solid black;
}

h2{
	padding: 10px;
	text-align: center;
	background-color: lightskyblue;
	color: forestgreen;
	border-bottom: 3px solid black;
	border-right: 2px solid black;
}

h1, h2, h3{
	font-family: 'Montserrat', serif;
}

table{
	border-collapse: collapse;
	margin: 0 auto;
	border: 5px solid black;
}

tr:nth-child(even){
	background-color: lightgray;
}

th{
	background-color: orange;
	color: white;
	padding: 10px;
	border-bottom: 5px solid black;
}

td{
	border: 1px solid black;
	padding: 10px;
}

label{
	float: left;
	width: 8em;
	padding-right: 1em;
}

input,textarea{
	margin-bottom: 1em;
	display: block;
}

input[type=submit] {
	display: block;
	border-radius: 5px;
	text-decoration: none;
	padding: 8px 25px;
	font-weight: bold;
	background-color: pink;
}

form{
	margin: 0 auto;
	background-color: gray;
	padding: 10px;
	max-width: 200px;
	border: 5px solid black;
}

.float-left{
	float: left;
	max-width: 40%;
	height: auto;
	background-color: burlywood;
	margin-right: 10px;
}

.logo{
	max-width: 275px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 20px;
}

#home-hero{
	background-image: url(images/guitars.jpg);
	height: 400px;
	background-size: cover;
	background-repeat: no-repeat;
}

#home-hero h1{
	text-align: center;
	color: blue;
	text-shadow: 2px 2px 2px black;
	margin: 0;
	padding: 10px;
	background-color: forestgreen;
}

.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%;
}

/*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: 1.8em;
	}
}

/* CSS Adjustments for Smartphones */
@media only screen and (max-width: 768px) {
	h1{
		font-size: 1.5em;
	}
}
