* {
  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;
}

nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 500px;
  margin: 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;
}

.review-list {
  width: 90%;
  max-width: 1100px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.review-card {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.review-card img {
  width: 100%;
  display: block;
}

.review-card h2 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: normal;
}

.review-card p {
  margin-top: 10px;
  color: rgb(170,170,170);
  font-size: 14px;
}

.review-card:hover {
  transform: translateY(-6px);
  opacity: 0.85;
}