html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Istok Web', sans-serif;
}

/* General section styling */
.page {
  height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* First section: Konnekt heading */
.page1 {
  background: url("Background picture.png") no-repeat center center fixed;
  background-size: cover;
}

/* Overlay for opacity */
.page1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("Background picture.png") no-repeat center center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

/* Konnekt heading */
.page1 h1 {
  font-size: 200px;
  font-weight: 400;
  background: linear-gradient(267deg,#EBDFE4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 5px white;
  margin: 0;
  margin-top: -220px;
  line-height: 1;
}

/* Second section */
.page2 {
  background: url("Background picture.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
  padding: 50px;
}

.page2 h2 {
  font-size: 80px;
  margin-bottom: 20px;
}

.page2 p {
  font-size: 24px;
  max-width: 800px;
}

/* there are some changes here */