html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
    background-color: #fde5c3;
}
.flexContainer {
    display: flex;
    justify-content:space-around;
    font-size: 30px;
}
@font-face {
    font-family: comicSans;
    src: url(ldfcomicsans-font/Ldfcomicsans-jj7l.ttf);
}
nav {
    padding: 10px;
    background-color: #2a3642;
    font-family: comicSans;
    color: #fde5c3;
}
h1 {
  font-family: comicSans;
  color: #2a3642;
  font-size: 80pt;
  text-align: center;
  border-bottom: #2a3642 solid 7pt;
}
a:link {
  color: #fde5c3;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #fde5c3;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #fde5c3;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: #b9c056;
  background-color: transparent;
  text-decoration: underline;
}
.fade-in-logo {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 2s;
  width: 80%;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10%;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.desc {
  font-family: comicSans;
  padding-top: 20px;
  font-size: 30pt;
  padding-right: 10%;
  padding-left: 10%;
}
.pictureArea {
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5%;
  margin-bottom: 5%;
  width: 80%;
  height: 700px;
}
.about {
  background-color: #2a3642;
  padding-bottom: 20px;
}
#about {
  font-family: comicSans;
  color: #fde5c3;
  text-align: center;
  font-size: 80pt;
  border-bottom: #fde5c3 solid 7pt;
}
.buy {
  background-color: #b9c056;
}
#buy {
  font-family: comicSans;
  color: #2a3642;
  text-align: center;
  font-size: 80pt;
  border-bottom: #2a3642 solid 7pt;
}
.contact {
  background-color: #0dd9d6;
  padding-bottom: 30px;
}
#contact {
  font-family: comicSans;
  color: #2a3642;
  text-align: center;
  font-size: 80pt;
  border-bottom: #2a3642 solid 7pt;
}
.steam {
  font-family: comicSans;
  text-align: center;
  font-size: 50pt;
  color: #2a3642;
  padding-bottom: 20px;
  padding-top: 20px;
}
.steamImg {
  padding-left: 15%;
  padding-right: 15%;
  width: 70%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.abt {
  color: #fde5c3;
  font-size: 40pt;
  font-family: comicSans;
}
h5 {
  color: #fde5c3;
  font-size: 50pt;
  font-family: comicSans;
  text-align: center;
}
.aboutimg {
  padding-left: 20%;
  padding-right: 20%;
  width: 60%;
}
input {
  width: 100%;
  font-size: 50pt;
  font-family: comicSans;
  color: #2a3642;
  background-color: #fde5c3;
}
textarea {
  width: 100%;
  font-size: 50pt;
  font-family: comicSans;
  color: #2a3642;
  background-color: #fde5c3;
}
footer {
  font-family: comicSans;
  text-align: center;
  background-color: #2a3642;
  color: #fde5c3;
  padding: 7%;
}
iframe {
  width: 70%;
  padding-left: 15%;
  padding-right: 15%;
  padding-bottom: 30px;
}
.item1 { grid-area: one; }
.item2 { grid-area: two; }
.item3 { grid-area: three; }
.item4 { grid-area: four; }
.item5 { grid-area: five; }
.item1, .item2, .item3, .item4, .item5 {
  margin: 0px;
  padding: 0px;
  outline: #2a3642 solid 5px;
}
.item1, .item3 {
  width: 24.78%;
}
.item2, .item4, .item5 {
  width: 49.78%;
}
.grid-container {
  display: grid;
  grid-template-areas:
      'one two two three'
      'four four five five';
  }
@media screen and (max-width: 640px) {
  h1 {
    font-size: 50pt;
  }
  .desc {
    font-size: 30pt;
  }
  #about, #buy, #contact {
    font-size: 50pt;
  }
  .abt {
    font-size: 30pt;
  }
  h5 {
    font-size: 40pt;
  }
  .steam {
    font-size: 30pt;
  }
  input, textarea {
    font-size: 30pt;
  }
}