
    body {
      background-color: #222220;
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: #e2dbca;
    }

h1, h2, h3, .project-title {
  font-family: 'Cooper Hewitt', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #e2dbca;
}

#mainTitle {
  font-size: 40px;
  margin: 20px 0;
  text-align: center;
}

.tabbed {
  width: 90%;
  margin: 20px auto;
}

.tabbed input[type="radio"] {
  display: none;
}

.tab-container {
  display: flex;
  justify-content: center;
  background-color: #6c6a68;
  border: 1px dashed #e2dbca;
  margin-bottom: 15px;
  flex-wrap: wrap;
  padding: 5px;
  border-radius: 5px;
}

.tab-container label {
  font-weight: 700;
  padding: 12px 25px;
  margin: 5px;
  background: #e2dbca;
  color: #6c6a68;
  cursor: pointer;
  transition: 0.3s;
  border: 1px dashed #e2dbca;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-align: center;
}




/* TAB CONTENT */
.tab-content { display: none; padding-top: 15px; }
#tab1:checked ~ .tab-content:nth-of-type(1),
#tab2:checked ~ .tab-content:nth-of-type(2),
#tab3:checked ~ .tab-content:nth-of-type(3),
#tab4:checked ~ .tab-content:nth-of-type(4),
#tab5:checked ~ .tab-content:nth-of-type(5) {
  display: block;
}

.galleryrow {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.gallerycolumn {
  width: 33.3%;
  padding: 10px;
  box-sizing: border-box;
}

.MyImg {
  width: 100%;
  border: 1px dashed #e2dbca;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.img-description {
  font-family: 'Cooper Hewitt', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #e2dbca;
  margin-top: 5px;
  text-align: center;
}

@media only screen and (max-width: 700px) {
  .gallerycolumn { width: 100%; }
}