* {
  box-sizing: border-box;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.backgroundImage {
  position: fixed;
  z-index: -10;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: url(/img/gridPlaneCliffs.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.nav {
  position: fixed;
  width: 100%;
  bottom: 0px;
  left: 0px;
  border-top: solid 3px #8B9CD7;
  background-color: #8B9CD7;
  opacity: 0.9;
  display: table;
}

.nav-links {
  overflow: hidden;
  display: inline-block;
  height: 100%;
  width: 100%;
  margin: 0px;
  vertical-align: middle;
  text-align: center;
  display: table-row;
}

.nav-link {
  display: table-cell;
  padding: 1em;
  margin: 0px;
  width: 25%;
  color: white;
  background-color: #9F09CA;
  cursor: pointer;
}

.nav-link:hover {
  background-color: #FF00E9 !important;
}

#projects {
  display: none;
}

#games {
  display: block;
}

#art {
  display: none;
}

#papers {
  display: none;
}

.header {
  text-align: justify;
  background-color: #FFE7FF;
  border-radius: 5px;
  border: solid 3px #8B9CD7;
}

.header h1 {
  text-align: center;
}

.header h2 {
  text-align: center;
}

.header h3 {
  text-align: center;
}

.post {
  text-align: justify;
  background-color: #FFE7FF;
  border-radius: 5px;
  border: solid 3px #8B9CD7;
}

.post h3 {
  margin-top: 0px;
  margin-bottom: 5px;
}

.post p {
  margin-bottom: 5px;
}

.section-header {
  text-align: center;
  background-color: #FFE7FF;
  border-radius: 5px;
  border: solid 3px #8B9CD7;
}

.date {
  font-size: 15px;
  color: #222222;
  margin-top: 0px;
  margin-bottom: 5px;
}

.spacer {
  padding: 0.5em;
}

#thumbnail {
  display: none;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  [class*="col-"] {
    width: 100%;
  }

  .nav-link {
    font-size: 1em;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .col-s-1 {
    width: 8.33%;
  }

  .col-s-2 {
    width: 16.66%;
  }

  .col-s-3 {
    width: 25%;
  }

  .col-s-4 {
    width: 33.33%;
  }

  .col-s-5 {
    width: 41.66%;
  }

  .col-s-6 {
    width: 50%;
  }

  .col-s-7 {
    width: 58.33%;
  }

  .col-s-8 {
    width: 66.66%;
  }

  .col-s-9 {
    width: 75%;
  }

  .col-s-10 {
    width: 83.33%;
  }

  .col-s-11 {
    width: 91.66%;
  }

  .col-s-12 {
    width: 100%;
  }

  .nav-link {
    font-size: 1.5em;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }

  .col-2 {
    width: 16.66%;
  }

  .col-3 {
    width: 25%;
  }

  .col-4 {
    width: 33.33%;
  }

  .col-5 {
    width: 41.66%;
  }

  .col-6 {
    width: 50%;
  }

  .col-7 {
    width: 58.33%;
  }

  .col-8 {
    width: 66.66%;
  }

  .col-9 {
    width: 75%;
  }

  .col-10 {
    width: 83.33%;
  }

  .col-11 {
    width: 91.66%;
  }

  .col-12 {
    width: 100%;
  }

  .nav-link {
    font-size: 1.5em;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
/* @media only screen and (min-width: 992px) {...} */

/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {...} */