* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: black;
  font-family: "Perpetua Titling MT", serif;
  color: white;
  text-align: center;
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: 120px;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  margin-bottom: 100px;
}

header h1 {
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: normal;
}

header h2 {
  font-size: 30px;
  margin-top: -40px;
  font-weight: normal;
}

nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0 auto;
  text-align: center;
}

nav a {
  color: rgb(255, 244, 97);
  text-decoration: none;
  font-size: 22px;
  transition: 0.2s;
}

nav a:hover {
  color: white;
  text-shadow: 0 0 8px white;
}

.back-link {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  
}

.back-link a {
   color: rgb(255, 244, 97);
  text-decoration: none;
  font-size: 22px;
  transition: 0.2s;
}

.review-page {
  width: 100%;
  padding-bottom: 220px;
}

.review-video {
  width: 90%;
  max-width: 600px;
  height: 45vh;
  margin: 0 auto 120px auto;
  overflow: hidden;
}

.review-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-text {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 160px auto;
}

.review-text h1 {
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 35px;
  font-weight: normal;
}

.review-text p {
  font-size: 15px;
  line-height: 2;
  color: rgb(210, 210, 210);
}

.image-block {
  width: 100%;
  margin-bottom: 180px;
}

.image-block img {
  width: 100%;
  display: block;
}

.image-block p {
  width: 88%;
  max-width: 760px;
  margin: 35px auto 0 auto;
  font-size: 12px;
  line-height: 2;
  color: rgb(190, 190, 190);
  letter-spacing: 0.5px;
  font-weight: normal;
}

.divider {
  width: 88%;
  height: 1px;
  background: rgb(25, 25, 25);
  margin: 140px auto;
}

a {
  text-decoration: none;
}

::selection {
  background: white;
  color: black;
}

@media (max-width: 768px) {

  body {
    padding-top: 80px;
  }

  header {
    padding-top: 80px;
    margin-bottom: 70px;
  }

  header h1 {
    font-size: 30px;
  }

  header h2 {
    font-size: 22px;
    margin-top: -20px;
  }

  nav {
    max-width: 320px;
    margin-top: 30px;
  }

  nav a {
    font-size: 16px;
  }

  .review-video {
    margin-bottom: 80px;
  }

  .review-text {
    margin-bottom: 120px;
  }

  .review-text h1 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .review-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .image-block {
    margin-bottom: 120px;
  }

  .image-block p {
    font-size: 12px;
    margin-top: 20px;
  }

}
.image-block p {
  width: 88%;
  max-width: 760px;
  margin: 35px auto 0 auto;
  font-size: 12px;
  line-height: 2;
  color: rgb(190, 190, 190);
  letter-spacing: 0.5px;
  font-weight: normal;
  text-shadow: none;
}