.menu {
  display: flex;
  flex-direction: row;
  z-index: 1;
  width: calc(100% - 2*2.8vw);
  flex-basis: 100%;
  height: 2.8vw;
  position: fixed;
  top: 2.8vw;
  padding: 0 2.8vw;
}
.menu > .links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
}
.menu > .links > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  margin: 0 5px;
  min-width: 2.8vw;
  height: 1.4vw;
}
.menu > .links > a:hover {
  background-color: white;
  color: black;
}
.menu .logo {
  flex-basis: 29vw;
}
.menu .logo img {
  position: relative;
  top: -25%;
  width: 100%;
  height: auto;
}

.home {
  width: 100%;
}

.main .title {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px;
  background-color: white;
  transform: rotate(-5deg) translate(-50%, -50%);
  margin: auto;
  text-align: center;
}
.main .project a {
  position: relative;
  display: block;
}
.main .project:hover .title {
  display: block;
}

.row {
  margin-top: 2.8vw;
  display: flex;
  padding-left: 1.4vw;
  padding-right: 1.4vw;
}
@media only screen and (max-width: 500px) {
  .row {
    margin-top: 0;
    flex-direction: column;
  }
}

.project {
  padding-left: 1.4vw;
  padding-right: 1.4vw;
  word-wrap: break-word;
}
@media only screen and (max-width: 500px) {
  .project {
    margin-top: 2.8vw;
  }
}
@media only screen and (min-width: 500px) {
  .project.one {
    width: calc(25% - 2.8vw);
  }
  .project.two {
    width: calc(50% - 2.8vw);
  }
  .project.three {
    width: calc(75% - 2.8vw);
  }
  .project.four {
    width: 100%;
  }
}
.project img {
  width: 100%;
  height: auto;
  display: block;
}

.logos .project .normal {
  display: block;
}
.logos .project .color {
  display: none;
}
.logos .project:hover .normal {
  display: none;
}
.logos .project:hover .color {
  display: block;
}

#instaFeed {
  margin: 0 calc(2.8vw - 1%);
}
#instaFeed img {
  margin: 0;
}

body {
  margin: 0;
  padding: 5.6vw 0 0;
  background-color: #FFCC33;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
}

p {
  margin: 0;
  font-size: 1.1rem;
}
p.caption {
  font-size: 0.8rem;
}

.footer {
  margin-bottom: 2.8vw;
}

/*# sourceMappingURL=style.css.map */
