body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  background: #e7e7e7;
  background: linear-gradient(to right, #f3f3f3 0%, #e7e7e7 83%);
}

h1 {
  font-weight: 500;
}
h2 {
  font-weight: 400;
}
h3 {
  font-weight: 500;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.heading-image {
  border: 5px solid #ffffff;
  margin-top: 20px;
  margin-bottom: 80px;
  position: relative;
}

.heading-image img {
  display: block;
}

.heading-image .overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
}

section {
  margin-bottom: 80px;
}

.half-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.half-content > div {
  display: flex;
  align-items: center;
}

.slice {
  position: relative;
}

.slice img {
  display: block;
  border: 5px solid #ffffff;
  box-sizing: border-box;
}

.slice.slice-br:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.slice.slice-bl:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.big-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
  overflow: hidden;
}

.big-images img {
  display: block;
  width: 100%;
  transition: transform 0.8s ease;
}

.big-images img.hover {
  transform: scale(1.3);
  z-index: 500;
}

footer {
  padding: 40px;
  color: #ffffff;
  background: #444444;
  background: linear-gradient(to right, #525252 0%, #424242 83%);
}

footer a {
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-bottom {
  font-size: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  body {
    font-size: 0.8em;
  }
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .half-content {
    grid-template-columns: 1fr;
  }
  section,
  .heading-image,
  .big-images {
    margin-bottom: 40px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}
