<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --branding-color: #7d929b;
  --secondary-color: #e6d0ca;
  --heading-font-family: "Alex Brush";
  --default-font-family: "Poppins", sans-serif;
}

.alex-brush-regular {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--branding-color);
  font-family: var(--heading-font-family);
  font-weight: bold;
}

h4 {
  font-size: 48px;
}
p {
  font-family: var(--default-font-family);
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
}

.homepage-logo img {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  max-height: 300px;
}
.hero {
  text-align: center;
  padding: 60px 10px;

  border-radius: 8px;
}
.hero img {
  border-radius: 8px;
}
.content-container {
  padding: 60px 20px 60px 20px;
}
.content-container h1 {
  font-size: 64px;
  line-height: 80px;
}

.content-container h3 {
  font-size: 24px;
  line-height: 1;
  font-family: var(--default-font-family);
  margin: 20px 0 0;
}
.content-container p {
  font-size: 14px;
}

.row-1,
.row-3,
.row-4 {
  margin-bottom: 25px;
  margin-left: 100px;
}
.row-2,
.row-5,
.row-6 {
  margin-left: 100px;
}
.row-1 img {
  max-height: 400px;
  border-radius: 8px;
}

.row-2 img,
.row-3 img,
.row-4 img,
.row-5 img {
  border-radius: 8px;
  max-width: 400px;
  max-height: 400px;
}

.logo,
.logo-small {
  max-width: 100px;
}
.container {
  margin-bottom: 0px;
}
nav {
  padding-top: 30px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
nav ul {
  padding: 0;
  margin: 0;
}
nav li {
  display: inline;
  list-style: none;
  line-height: 42px;
  margin-left: 15px;
}
nav a {
  text-decoration: 0;
  color: #272142;
  transition: all 100ms ease-in-out;
}
nav a:hover,
nav li.active a {
  color: var(--secondary-color);
}

.main-cards {
  margin-top: 25px;
}
footer a {
  text-decoration: 0;
  color: #272142;
  transition: all 100ms ease-in-out;
  font-size: 20px;
}
footer p {
  font-size: 20px;
}
.contact-box {
  flex-wrap: wrap;
  background: var(--secondary-color);
  padding: 30px 120px;
  border-radius: 10px;
}
.contact-box p {
  margin: 0;
  font-size: 14px;
  font-family: var(--default-font-family);
}

.contact-box h4 {
  font-size: 18px;
  font-family: var(--heading-font-family);
}

.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}
.card-body h5 {
  font-size: 24px;
  font-family: var(--heading-font-family);
  text-align: center;
}
.card-body p {
  font-size: 14px;
  font-family: var(--default-font-family);
}

.page-title {
  text-align: center;
  font-size: 52px;
  font-family: var(--heading-font-family);
}

.page-sub-title {
  text-align: center;
  font-size: 44px;
  font-family: var(--heading-font-family);
  color: var(--secondary-color);
}

.image-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 35px;
  margin-top: 35px;
}

.image-row {
  display: flex;
  justify-content: space-around;
  width: 80%;
}

.image-row img {
  width: 100%;
  max-width: 250px; /* Limit the size of images */
  height: 250px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.5);
}

.review {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(600px, 2fr));

  gap: 10px;
  padding: 10px;
  margin-top: 25px;
}

.review img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.review img:hover {
  transform: scale(1.05);
}
@media (max-width: 980px) {
  h2 {
    font-size: 44px;
  }
  h4 {
    font-size: 26px;
  }
  .hero h1 {
    font-size: 44px;
    line-height: 2;
  }
  .boxes {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }
  .content-container {
    text-align: center;
    padding: 0;
  }
  nav a {
    font-size: 14px;
  }
}
</pre></body></html>