* {
  padding: 0;
  margins: 0;
  box-sizing: border-box;
}

body {
  font-family: "Chivo", sans-serif;
}

.wrapper {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo-temp {
}

.logo-temp a {
  text-decoration: none;
  color: #ffffff;
  font-size: 32px;
}

.logo-temp a:hover {
  color: #2e5b80;
}

.hamburger {
  decoration: none;
  color: #ffffff;
  font-size: 32px;
}

.intro h1 {
  font-weight: 400;
  font-size: 60px;
  line-height: 70px;
  color: #e8be43;
  padding-top: 20px;
  padding-bottom: 20px;
}

.intro h1:hover {
  color: #2e5b80;
}

.my-gallery img {
  width: 100%;
  margin-bottom: 20px;
}

footer {
  font-size: 12px;
}

@media (min-width: 600px) {
  .logo-temp a {
    font-size: 42px;
  }

  .intro {
    width: 66.6%;
  }

  .intro h1 {
    font-size: 120px;
    line-height: 90px;
  }

  .my-gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .my-gallery img {
    width: 32%;
  }

  footer {
    font-size: 20px;
  }
}
