@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300);

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #eee;
  min-width: 850px;
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  display: block;
  padding-bottom: 64px;
  min-width: 850px;
}

header h1 {
  padding: 10vh;
  font-size: 8vh;
  text-shadow: 0px 0px 20px black;
}

#left-side {
  color: white;
  z-index: 100;
  position: fixed;
  height: 64px;
  width: 100%;
  display: block;
  background-color: #2196F3;
  display: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.26)
}

#left-side h1 {
  display: inline-block;
  float: left;
  padding: 5px;
  margin: 13px 0;
  font-weight: 400;

  cursor: pointer;
}

a {
  color: inherit;
}

#left-side .menu-toggle {
  padding: 20px;
  cursor: pointer;
  float: left;
}

#right-side {
  position: fixed;
  color: white;
  top: 0;
  right: 16px;
  z-index: 100;
  float: right;
  font-size: 1.1em;
}

#right-side a {
  display: inline-block;
  float: right;
  margin: 17px 0;
  font-weight: 300;
}

nav a {
  text-decoration: none;
  padding: 5px;
  border-radius: 3px;
}

nav a:hover {
  background-color: rgba(0,0,0,0.1);
}

content {
  position: relative;
  z-index: 2;
  left: 0;
  width: 100%;
  top: -64px;
  min-width: 850px;
}

.background {
  background-color: blue;
  background: url('../images/video-game-development.jpg') center / cover;
}

.white {
  color: white;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.center {
  text-align: center;
}

.round {
  border-radius: 3px;
}

card {
  padding: 16px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
  border-radius: 2px;
  width: 70vw;
  margin: 0 auto 5vh auto;
  z-index: 10;
  background-color: white;
  display: block;
}

.card-shadow {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
}

card h1 {
  font-weight: 300;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

card h2 {
  font-weight: 400;
}

card p {
  padding-top: 16px;
}

card ol, card ul {
  margin-left: 32px;
}

icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*.top-card {
  position: relative;
  top: calc(30vh - 64px);
  margin-bottom: calc(5vh + 64px);
}*/

.event {
  margin-top: 30px;
}

.clear {
  clear: both;
}

.event-box {
  background-color: #3F51B5;
  width: 30%;
  color: white;
  display: inline-block;
  float: left;
}

.event-box .event-title {
  font-size: 2em;
  margin-bottom: 10px;
  display: block;
  padding: 16px;
  padding-bottom: 0;
}

.event-box .event-time, .event-box .event-location {
  padding: 0 16px;
}

.event-box .event-more {
  border-top: 1px solid white;
  margin-top: 16px;
  padding: 16px;
}

.event-description {
  display: inline-block;
  width: 65%;
  margin: 0 16px;
  float: left;
}
