/*  font-family: "Urbanist", sans-serif;
  font-family: "Bodoni Moda", serif;*/

body {
  background-color: white;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

:root {
  --branding-color: #f5f5f5;
  --secondary-color: #fbfbfb;
  --heading-font-family: "Urbanist", sans-serif;
  --default-font-family: "Urbanist", sans-serif;
}

.logo {
  max-width: 20px;
}
.navbar {
  background-color: #fbfbfba6;
  box-shadow: none;
}

.active {
  font-weight: 300;
}
.navbar-greyish {
  background-color: #fbfbfb;
}

.nav-item {
  font-size: 25px;
  font-family: var(--default-font-family);
  font-weight: 200;
  padding: 0 7px;
}

body {
  font-family: var(--default-font-family);
}

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

h1 {
  font-size: 35px;
}

h2 {
  font-size: 64px;
}

h4 {
  font-family: "Bodoni Moda", serif;
  font-weight: regular;
  font-size: 50px;
  letter-spacing: -5px;
  font-optical-sizing: none;
}

p {
  font-weight: thin;
  font-size: 18px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.about {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 10px;
}

.about p {
  max-width: 25%;
  margin: 0 5px;
}

.hero {
  background: #ffffff;
  text-align: center;
  padding: 110px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: clamp(40px, 15vw, 165px);
  margin: 0;
  letter-spacing: -0.09em;
  font-optical-sizing: none;
}

.hero h2 {
  font-family: var(--heading-font-family);
  font-size: clamp(20px, 6vw, 35px);
  font-weight: 100;
  margin: 0;
  text-align: center;
}

.btn-branding {
  background: var(--branding-color);
  border-radius: 4px;
  color: #000000;
  font-size: 18px;
  line-height: 27px;
  padding: 12px 20px;
}

.btn-branding-outline {
  background: var(--branding-color);
  border: 1px solid var(--branding-color);
  border-radius: 4px;
  font-size: 18px;
  line-height: 27px;
  padding: 12px 20px;
}

.port {
  background: #ffffff;
  text-align: center;
  padding: 110px 20px;
}

.port p {
  font-family: "Bodoni Moda", serif;
  font-size: 165px;
  margin: 0;
  letter-spacing: -15px;
  font-optical-sizing: none;
}
.port h2 {
  font-family: var(--heading-font-family);
  font-size: 35px;
  font-weight: 100;
  text-align: left;
}

.title p {
  font-family: "Bodoni Moda", serif;
  font-size: 70px;
  margin: 0;
  letter-spacing: -7px;
  font-optical-sizing: none;
}

.portfolio-grid img {
  margin-bottom: 1px;
  border-radius: 0px;
  border: 1px solid black;
}

footer {
  padding-bottom: 20px; /* Adds some space to the bottom */
}

footer .contact-box {
  background: var(--secondary-color);
  padding: 30px 40px;
  border-radius: 10px;
  margin: 0 auto; /* Center it */
  width: 95%; /* Define width as a percentage */
}

footer .contact-box p {
  margin: 0;
}

@media (max-width: 900px) {
  h1 {
    font-size: 37.5px;
    line-height: 1.5;
  }

  h2 {
    font-size: 45px;
  }

  h4 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .hero {
    background: #ffffff;
    text-align: center;
    padding: 80px 20px;
  }

  .project-description {
    padding: 0;
    text-align: center;
  }

  footer .contact-box {
    padding: 30px;
  }
}
