<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  /*   *****   Storing Colors In Variables   *****  */
  --body-clr: #ffffff;
  --primary-clr: hsl(220, 48%, 28%);
  --text-clr: hsl(220, 12%, 45%);;
}
body{
  width: 100%;
  min-height: 100vh;
}

.DIY-hero {
  background-image: url("https://www.imf.org/-/media/Images/IMF/About/Factsheets/2022/sdgs-header-01.ashx?h=1379&amp;w=5534&amp;la=en");
  background-repeat: no-repeat;
  height: auto;
  aspect-ratio: 20 / 6;
  width: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.DIY-hero h1 {
  color: #ffffff;
  font-size: 34px;
  text-align: center;
  padding: 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.DIY-section{
  width: 100%;
  padding: 30px 8%;
  background-color: var(--body-clr);
  min-height: 100vh;
}
.button-group{
  text-align: center;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.button-group .button {
  display: inline-block;
  padding: 10px 30px;
  margin: 5px;
  background-color: #c8d1d8;
  color: var(--primary-clr);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s;
  border: none;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
.button-group .button.active{
  background-color: var(--primary-clr);
  color: var(--body-clr);
}
.button-group .button:hover{
  background-color: var(--primary-clr);
  color: var(--body-clr);
}

.button-group .button img{
  width: 25px;
  height: auto;

}
div.DIY-gallery{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
div.DIY-gallery .DIY-item{
  position: relative;
  margin: 4px;
  width: calc(33.33% - 8px);
  overflow: hidden;
  cursor: pointer;
}
.DIY-item .filter-videos{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
  transition: 0.3s;
  border: none;
}
div.DIY-gallery .DIY-item:hover img{
  transform: scale(1.15);
}


@media(max-width: 1024px){
  div.DIY-gallery .DIY-item{
    width: calc(50% - 8px);
  }
}

@media(max-width: 600px){
  div.DIY-gallery .DIY-item{
    width: 100%;
    margin: 4px 0px;
  }
}

@media screen and (max-width: 1118px) {
  .DIY-hero {
      height: auto;
      aspect-ratio: 20 / 6;
      width: 100%;

  }
}</pre></body></html>