@font-face{
font-family: "Extra Old";
src: url(ExtraOld.otf);

}

body {
  margin: 0;
  padding: 0;
  background-color:#1a191f;
}
h1, h2, h3{
	font-family: "Extra Old";
	color:#f4bf24;
	letter-spacing: 3px;
}
p {
  margin: 10px;
  color:white;
  font-family: Arial, Helvetica, sans-serif;
}
/* Navigation TopBar */
.menu{
	background-color: #333333;
	margin: 0;
	transition: .3s ease;
	top:0;
	right:-1000px;
	position: fixed;  
	width: 100%;
	padding: 0;  
	z-index:100;
}
.menu.active{
	right:0px
}
.ham-menu{
	height:50px;
	width:50px;
	margin-left:auto;
	position:fixed;
	z-index:101;
	cursor:pointer;
	right:30px;
	top:2px;
}
.ham-menu span{
	height: 5px;
	width:100%;
	background-color:white;
	border-radius:25px;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50px, -50px;);
	transition: .3s ease;
}

.ham-menu span:nth-child(1){ top:25%;}
.ham-menu span:nth-child(3){ top:75%;}

.ham-menu.active span:nth-child(1){ top:50%; transform: translate(-50%, -50%) rotate(45deg);}
.ham-menu.active span:nth-child(2){opacity: 0;}
.ham-menu.active span:nth-child(3){ top:50%; transform: translate(-50%, -50%) rotate(-45deg);}

ul {
  list-style-type: none;  
  flex-direction:column; 
  display: flex;
  float:none;
  padding-right:0px;
}

ul li a {
  display: block;
  font-family: "Extra Old";
  color:#f4bf24;
  font-size: 28px;
  padding: 14px 16px;
  text-decoration: none;
  text-align:center;
}

ul li a:hover {
  background-color: #111111;
  color:white;
}

.logo{
	width:200px;
	height:100%;
	float:left;
	position:absolute;
	display:none;
	left:100px
}
.logo img{
	width:200px;
	margin-top:-6px;
}

/*Header*/
.header{
	height:600px;
	padding-top: 80px;
	border-bottom: 4px solid #a41d21;
	background-image: none;
	background-repeat:no-repeat;
	background-position-x: right;
	background-position-y: bottom;
	background-size:150%;
}

.header #bannerInfo{
	float:left;
	width:100%;
	height:500px;
	margin:20px auto;
	padding: 0 6em;
	background-color:rgba(0,0,0,0.6);
}

.header #bannerInfo h1{
	color:white;
	width:400px;
	margin:-100px 0 0 0;
	padding:0;
	font-size:40px; 
	text-align:center; 
}

.header #bannerInfo .button{
	border:none;
	width:400px;
	color:#1a191f;
	background-color:#f4bf24;
	border-radius: 10px;
	margin-top:-20px;
	font-weight: bold;
	padding: 16px 10px;
	text-align:center;
	display:inline-block;
	font-size:20px;
	cursor:pointer;
}

/* Main column */
.container{
	margin: 10px 100px;
	color:white;
	font-family: Arial, Helvetica, sans-serif;
}

.infoGrid {
  display: grid;
  grid-template-columns: 300px;
  padding:auto;
  margin: 20px 0;
  place-content: center;
  gap: 20px;
}
.infoGrid div {
	height:300px;
	border-color:#a41d21;
	border-style:solid;
	color: #000;
	padding: 0;
	font-size: 20px;
	text-align: center;
}

.about{
	margin: 10px 0;
	height:auto;
}

#aboutImage{
	float:none;
	width:100%;
	height:400px;
	position:static;
	z-index:-2;
	left:100px;
	background-image: url("images/lgc-about.jpeg");
	background-repeat:no-repeat;
	background-position-x: 0px;
	background-position-y: 0px;
	background-size:100%;
	border-radius: 120px;
}
#text{
	background-color:#1a191f;
	position:static;
	width:100%;
	float:none;
	left:45%;
	z-index:-1;
	height:auto;
	margin:-160px 0 20px 0;
	padding:10px 0 10px 30px;
	border-radius: 60px;
}

.greyBlock{	background-color:#1e292f;}
.greyBlock #content{margin: 20px 100px;}

.events{
	padding: 20px 0;
}

.discord{
	padding: 20px 0;
	height:auto;
	width:auto;
	border: 2px solid #a41d21;
	background-image: url("images/discordBG.png");
	background-repeat:no-repeat;
	background-position-x: 0px;
	background-position-y: 0px;
	background-size:100%;
}
.discord h1{font-size:50px;padding-left:18%;}


.discord a{
	background-image:url(images/icons/discordIcon.png);
	width:160px;
	height:160px;
	margin: 0 0 0 30%;
	display: inline-block;
	background-size: contain, cover;
	background-repeat: no-repeat;
}

.discord a:hover{background-image:url(images/icons/discordHover.png);}
.discord a:active{background-image:url(images/icons/discordClick.png);}

#discordFeed{
	width:auto;
	height:400px;
	top:0px;
	margin:0px;
	float:none;
}

form {
    display: block;
    justify-content: space-between;
    gap: 0px;
	}

.box{
	float:none;
	width:100%;
	position: static;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type=email], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

button[type=submit] {
  background-color: #770000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type=submit]:hover {
  background-color: #aaaaaa;
}

/* Footer */
footer {padding: 20px 100px;}

footer a{
	display: inline-block;
	border-radius: 50%;
	background-size: contain, cover;
	margin:0 0 0 10px;
}

footer a:hover{background-color:#a41d21;}
footer a:active{background-color:#db1f26;}

footer img{width:80px;}



/* Tablet screen size */
@media screen and (min-width:600px){

.header{	background-image: url("images/lgc-header.png");}

/* Main column */

.infoGrid {
  display: grid;
  grid-template-columns: 300px 300px;
}


#text{
	left:0;
}
.discord{padding: 20px 40px;}

.discord a{
	width:300px;
	height:300px;
	margin:0 0 0 24%;
}

}

/* Desktop screen size */
@media screen and (min-width:1000px){

/* Navigation TopBar */
.ham-menu{display: none;}
ul {flex-direction:row; float:right; padding-right:100px;}

.menu{
  width: 100%;  
  right: 0px;
}
.logo{display:block;}

.header{
	background-position-x: -100px;
	background-position-y: top;
	background-size:120%;
}

.header #bannerInfo{
	float:left;
	width:20%;
	height:500px;
	margin:20px;
	padding: 0 240px;
	background-color:rgba(0,0,0,0);
}

/* Main column */
.infoGrid {
  display: grid;
  grid-template-columns: 300px 300px 300px 300px;
}

.about{height:550px;}

#aboutImage{
	float:left;
	width:50%;
	position:absolute;
	top:1100px;
}
#text{
	width:45%;
	position:absolute;
	float:right;
	left:45%;
	height:auto;
	margin-top:20px;
}
.events{padding: 20px 40px;}
.discord{padding: 40px 0 20px 40px;height:auto;}

.discord h1{font-size:100px;}

#discordFeed{
	width:600px;
	margin:0px auto;
	float:none;
}
form{display:flex; gap:40px}

#box {width: 50%;}

input[type=text], select, textarea {
	width:100%;
}
/* Footer */
footer {padding: 20px 100px;}

footer a{margin:0 0 0 10px;}

footer img{width:40px;}


}
/* bigger desktop */
@media screen and (min-width:1500px){

.header{
	background-size:100%;
}

	.discord{
		height:600px;
		background-position-x: -760px;
		background-position-y: -200px;
		background-size:160%;	
	}

	.discord h1{font-size:100px;padding-left:18%;}
	#discordFeed{float:right; margin:-70px 20px 0 0px;}
}