/*
Theme Name: HVRL
Description: Original WordPress Theme for HVRL
Theme URI: http://hvrl.ics.keio.ac.jp
Author: Tomoya Matsubara
Author URI: http://hvrl.ics.keio.ac.jp
Text Domain: hvrl
Version: 2.2.1
Tags: keio, hvrl
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/* Font size */
body > * {
  grid-column: 1/-1;
}

main {
  padding-bottom: 0;
}

article > .block {
  display: grid;
  grid-template-columns: 20px 20px 60px 1fr 60px 20px 20px;
  z-index: 2;
  position: relative;
}
article > .block > * {
  grid-column: 4/-4;
  margin-top: 60px;
  margin-bottom: 120px;
  text-align: center;
}
article > .block h2 {
  text-align: center;
}
article > .block:nth-of-type(odd) {
  background: #312424;
}
article > .block:nth-of-type(even) {
  background: #3d2c2c;
}

#particles-js {
  position: absolute;
  z-index: -1;
  width: 100%;
}

#particle-wrapper {
  position: relative;
  width: 100%;
  z-index: -2;
  background-color: #1c1c1c;
  padding-top: 30px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 20px 20px 60px 1fr 60px 20px 20px;
}
#particle-wrapper > * {
  grid-column: 4/-4;
}

/* Smaller than 834px (tablets) */
@media screen and (max-width: 834px) {
  #particle-wrapper > * {
    grid-column: 3/-3;
  }
  article > .block > * {
    grid-column: 3/-3;
  }
}
/* Smaller than 480px (smartphones) */
@media screen and (max-width: 480px) {
  #particle-wrapper p {
    font-size: 0.8em;
  }
  article > .block p {
    font-size: 0.8em;
  }
}/*# sourceMappingURL=particle.css.map */