body {
  background-color: #1a1a1a;
  color: grey;
  font-family: 'Comfortaa', cursive;
  padding: 10px;
  margin: 0;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  height: auto;
  margin: 50px 0 50px 0;
}

.header h1 {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  line-height: 0;
}

.header h3 {
  text-align: center;
  font-weight: 200;
  font-size: 18px;
  line-height: 0;
}

.project_list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: auto;
}

.project_list .row .list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px;
  padding: 10px 10px 10px 10px;
  height: auto;
  width: 40vw;
  border-radius: 20px;
  background-color: #2c2c2c;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.project_list .row .list_item .icon {
  width: 75px;
  height: 75px;
  border-radius: 15px;
  background-color: #666666;
}

.project_list .row .list_item #magical_oceans {
  background-image: url(../assets/magicalOceans_bg.jpg);
  background-size: cover;
  background-position: center;
}

.project_list .row .list_item #mycourt {
  background-image: url(../assets/mycourt_bg.jpg);
  background-size: cover;
  background-position: center;
}

.project_list .row .list_item #gyongyhaz {
  background-color: #b4618a;
}

.project_list .row .list_item a {
  text-align: right;
  font-weight: 400;
  font-size: 18px;
  line-height: auto;
  text-decoration: none;
  color: white;
  padding: 20px 10px 20px 0;
}

.footer {
  text-align: center;
}

@media (max-width: 700px) {
  .project_list .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project_list .row .list_item {
    height: auto;
    width: auto;
  }
}
/*# sourceMappingURL=style.css.map */