@charset "UTF-8";

/* Body */
body {
	background-color: #888;
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* Container */
.container {
	display: grid;
	grid-template-areas: "header" "main" "footer";
	/* grid-gap: 0.75em; */
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/* Navigation Links (Top logo and Site Links)*/
header {
	grid-area: header;
	text-align: center;
	background-color: #000;
/* 	background-image: url("../images/Athyrio_Games_Logo_Top.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	align: center;
	margin-top: 0.25%;
	padding-left: 2.5%;
	padding-right: 2.5%; */
}
img{
	max-width: 100%;
	height: auto;
}

/* Nav Links (unused) */
/* nav {
	float: right;
	width: 100%;
	text-align: right;
	margin-top: 0px;
	margin-right: auto;
} */
/* header nav ul {
	height: auto;
	width: 100%;
	margin-top: center;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	list-style: none;
	float: right;
} */
/* nav ul li {
	float: right;
	font-size: 32px;
	text-align: left;
	margin-right: 3%;
	letter-spacing: 0.05em;
	font-weight: bold;
} */

/* Global Link Colors */
a:link {
	color: white;
  text-decoration: none;
}
a:visited {
	color: white;
  text-decoration: none;
}
a:hover {
	color: red;
  text-decoration: none;
}
a:active {
	color: red;
  text-decoration: none;
}

	/* Slideshow */
	/*  .slider {
        width: 100%;
        height: 320px;
        background-color: #000;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        text-align: center;
        overflow: hidden;
      }
	  * {box-sizing: border-box;}
      .image-container {
        width: 5120px;
		height: 320px;
        background-color: pink;
        clear: both;
        position: relative;
        -webkit-transition: left 2s;
        -moz-transition: left 2s;
        -o-transition: left 2s;
        transition: left 2s;
      }
      .slide {
        float: left;
        margin: 0px;
        padding: 0px;
        position: relative;
      }
      #slide-1:target ~ .image-container {
        left: 0px;
      }
      #slide-2:target ~ .image-container {
        left: -1280px;
      }
      #slide-3:target ~ .image-container {
        left: -2560px;
      }
	   #slide-4:target ~ .image-container {
        left: -3840px;
      }
      .buttons {
        position: relative;
        top: -20px;
		margin: 0 2px;
      }
      .buttons a {
        display: inline-block;
        height: 15px;
        width: 15px;
		margin: 0 2px;
        border-radius: 50px;
        background-color: white;
      } 
	*/
	  
/* Main */
main {
	grid-area: main;
	/* width: 100%; */
	padding: 2.5% 4% 4% 4%;
	background-color: #fff;
}

/* Footer */
footer {
	grid-area: footer;
	text-align: center;
	/* width: 100%; */
	padding-top: 0.25%;
	padding-bottom: 0.25%;
	padding-left: 2.5%;
	padding-right: 2.5%;
	margin-bottom:2%;
	background-color: #242424;
}

/* Fonts */
h1 {
	font-family: Century Gothic, sans-serif;
	letter-spacing: -0.05em;
	/* line-height: 1.5em; */
}
h2 {
	font-family: Century Gothic, sans-serif;
	letter-spacing: 0.05em;
	/* line-height: 1.5em; */
}
h3 {
	font-family: Century Gothic, sans-serif;
	letter-spacing: 0.05em;
	/* line-height: 1.5em; */
}
p {
	font-family: Century Gothic, sans-serif;
	letter-spacing: 0.01em;
	line-height: 1.5em;
}
p.footer {
	font-family: Century Gothic, sans-serif;
	letter-spacing: 0.05em;
	line-height: 1.5em;
	color: white;
}
