:root{
  --paper: #f6f7f6;
  --paper-soft: #fbfbfb;

  --ink: #2f2f2f;
  --muted: #6e6e6e;

  --accent-soft: #d2c8b6;  
  --line: rgba(0,0,0,.06);

  --shadow1: 0 10px 26px rgba(0,0,0,.12);
  --shadow2: 0 36px 72px rgba(0,0,0,.16);
}

.hero{
  position: relative;
  padding: 10px 0 70px;
  min-height: 100vh;

  background: url("/image/kerkfull.jpg") center / cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.34));
  z-index:0;
}

.hero__content{
  position: relative;
  z-index: 1;

  width: min(900px, 95%);
  margin: 30px auto;

  padding: 58px 66px;
  background: var(--paper);
  color: var(--ink);

  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow1), var(--shadow2);
}

.hero__content h1{
  margin: 0 0 14px;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: .2px;
}

.hero__content p{
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.75;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero__content .intro{
  margin: 0 auto 34px;
}

@media (max-width: 768px){
  .hero__content{
    padding: 40px 28px;
  }
}

@media (max-width: 768px){
  .hero__content{
    padding: 40px 28px;
  }
}

* {
  box-sizing: border-box;
}




body {
  font-family: Arial, sans-serif;
}

.container {
  width: 800px;
  margin: 0 auto;
}

.row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
}

.row.offset {
  margin-top: 200px;
}

.box {
  width: 25%;
  height: 180px;
  background-color: #ccc;
}

.text {
  width: 75%;
  padding: 0 20px;
}

.row.left {
  flex-direction: row;
}

.row.right {
  flex-direction: row-reverse;
}

