* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body,
html {
  height: 100%;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

a,
span {
  color: black;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: -5%;
}

a:visited {
  color: black;
}

article {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height:22px;
  letter-spacing: -5%;
  max-width: 680px;
  margin: auto;
}

p {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height:18px;
  letter-spacing: -5%;
}

h1,
h3 {
  font-family: "EB Garamond", Times, serif;
  font-style: italic;
  font-weight: 300;
  text-align: center;
  letter-spacing: -5%;
}

h1 {
  font-size: 58px;
  text-transform: uppercase;
}


h3 {
  font-size: 28px;
}

.scroll-container {
  /*height: 100%;*/
  /*overflow-y: scroll;*/
  position: relative;
  padding: 1em;
  /*scroll-snap-type: y mandatory; */
  -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS devices */
  display: flex;
  flex-direction: column; /* Stack sections vertically */
}

.section {
  height: 100vh; /* Full viewport height for each section */
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}

.content {
  text-align: center;
  margin: 6em 0;
}


.fullscreen-image,
.fullscreen-image-wide {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

.fullscreen-image {
  max-width: 680px;

}

.fullscreen-image-wide {
  max-width: 800px;
}

.navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
