
:root {
  --color-bg: #FFFBDB;
  --header-bg: #34113F;
  --color-text-main: #9E7685;
  --color-text-header: #2800FF;
  --color-primary: #FFFF00;
  --wrapper-height: 87vh;
  --image-max-width: 300px;
  --image-margin: 3rem;
  --font-family: "HK Grotesk";
  --font-family-header: "HK Grotesk";
}

body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-main);
}

.header{
  width: 100vw;
  background: var(--header-bg);
  padding: 20px 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.header a {
  text-decoration: none;
  color: var(--color-bg);
}

.logo {
  font-size: 40px;
  font-weight: 800;
  font-family: "HK Grotesk";
}

.navbar{
  width: 90%;
  display: flex; 
  gap: 5%; 
  justify-content: center;

  font-family: "Constantia";
  font-size: 20px;
  font-weight: 500;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  padding: 5px 0;
  margin: 0;
  margin-top: 16px;
}
.navbar a {
  text-decoration: none;
  color: white;
}
.navbar a:hover,
.navbar .active {
  color: var(--color-text-main);
}

h1 {
  color: black;
  font-size: 35px;
  text-align: center;
  margin-top: 20px;
}

h2 {
  color: var(--color-text-main);
  text-align: center;
  font-size: 25px;
}

.gallery {
  margin: 20px 0px;
  align-content: center;
}
.gallery img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

h3 {
  color: black;
  margin: 20px 20px;
  font-size: 20px;
}

h4 {
  color: black;
  margin: 20px 20px;
  font-size: 20px;
}
