#projects {
  position: relative;
  background-color: #FFF;
}

#projects h1 {
  font-family: Oswald, sans-serif;
  width: 100%;
  text-align: center;
  font-size: 48px;
  z-index: 5;
  text-transform: uppercase;
  color: #1A2530;
}

#projects #projects-grid {
  position: relative;
  right: 0px;
  top: 0px;
  width: calc(100vw - 360px - 40px);
  margin: 20px 20px;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 20px;
}

#projects #projects-grid .item {
  z-index: 1;
  background-color: #DF4949;
  color: #FFF;
  position: relative;
}

#projects #projects-grid .item h2 {
  font-family: Oswald, sans-serif;
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#projects #projects-grid .item p {
  padding: 20px 20px 70px 20px;
  text-align: justify;
}

#projects #projects-grid .item .button-icon--play {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}

#projects #projects-grid .item .language-logo {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

#projects #projects-grid .item .logo-cpp {
  background: #00000000 url("../res/cpp-logo.png") no-repeat center center;
  background-size: 40px;
  width: 48px;
  height: 48px;
}

#projects #projects-grid .item .logo-unity {
  background: #00000000 url("../res/unity-logo.png") no-repeat center center;
  background-size: 40px;
  width: 48px;
  height: 48px;
}

#projects #projects-grid .item .logo-python {
  background: #00000000 url("../res/python-logo.png") no-repeat center center;
  background-size: 40px;
  width: 48px;
  height: 48px;
}

#projects #projects-grid .item .logo-haskell {
  background: #00000000 url("../res/haskell-logo.png") no-repeat center center;
  background-size: 40px;
  width: 48px;
  height: 48px;
}

#projects #projects-grid .item .link-logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

#projects #projects-grid .item .logo-github {
  background: #00000000 url("../res/github-white.png") no-repeat center center;
  background-size: 40px 40px;
  width: 48px;
  height: 48px;
}

#projects .button-container {
  height: 50px;
  position: relative;
}

#projects .button-container .button {
  position: absolute;
  right: 100px;
  background-color: #1A2530;
  width: 280px;
  height: 50px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#projects .button-container .button .text {
  float: left;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  width: calc(100% - 50px);
  line-height: 50px;
  text-align: center;
  font-size: 1.2em;
}

#projects .button-container .button .logo.github {
  float: right;
  background: #00000000 url("../res/github-white.png") no-repeat center center;
  background-size: 40px 40px;
  width: 50px;
  height: 50px;
}
/*# sourceMappingURL=projects.css.map */