body {
  margin: .75em auto;
  background-color: #111;
  max-width: 61.5em;
  font-family: 'Open Sans', sans-serif;
}

@font-face {
	font-family: "Magical";
	src: url("resources/eldermagic.ttf");
}

.body {
  background-color: #5fb;
  border-radius: 1em;
  padding: .75em;
}

a:link {
  color: #4F4;
}
a:visited {
  color: #CF4;
}

a:hover {
  color: red;
}

h1 {
  background-color: #123;
  color: #fff;
  border-radius: .5em;
  padding: .75em;
  margin-top: 0;
  font-family: 'Magical';
  font-size: 2.5em;
}

.page-info {
  background-color: #e6fff5;
  border-radius: .5em;
  padding: 20px;
}

.gridView {
  display: grid;
  grid-gap: .5em;
}

.item {
  background-color: #123;
  color: #fff;
  border-radius: .5em;
  padding: .5em;
  font-size: 125%;
  grid-column: 1;
}

.hidden{
  display: none;
}

.tweetstorm {
  grid-column: 2;
  grid-row-start: 1;
  grid-row-end: 10;
  max-width: 20em;
}

.trumpet img {
  max-width: 100%;
  border-radius: .5em;
}

.cardBox {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(auto-fill, 9em);
  grid-gap: .5em;
}

.card {
  width: 8em;
  background-color: #444;
  border-radius: .5em .5em 2em .5em;
  border-width: .5em;
  border-style: solid;
  border-color: #333;
  text-align: center;
}

.cardpic {
  min-height: 8em;
  display: grid;
  justify-items: center;
  align-items: center;
}

.slideshowpic {
  display: grid;
  justify-items: center;
  align-items: center;
}

.slideshowframe {
  grid-column: 1 / -1;
  background-color: #444;
  border-radius: .5em .5em 2em .5em;
  border-width: .5em;
  border-style: solid;
  border-color: #333;
  text-align: center;
  position: relative;
}

.robopic {
  max-height: 100%;
  max-width: 100%;
}

.caption {
  font-size: 75%;
  margin: 1em;
  align-items: stretch;
}

.showNext, .showPrev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  float: right;
  font-family: 'Magical';
  font-size: 24px;
  color: #1fb;
  transition: 0.6s ease;
  background-color: rgba(0,0,0,0.3);
  padding: 16px;
}

.showNext {
  right: 0;
  border-radius: 20px 0 0 20px;
}

.showPrev {
  left: 0;
  border-radius: 0 20px 20px 0;
}

.showNext:hover, .showPref:hover{
  background-color: rgba(0,0,0,0.8);
}

