/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black: #231f20;
  --white: #fffef8;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
body {
  font-family: "Playfair Display", sans-serif;
}
h1 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
}
/* Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
}

/* header */
.header {
  background: var(--black);
  padding: 16px 16px 32px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  text-transform: lowercase;
}

.header .logo-wrap img {
  height: 50px;
}
/* Hero */
.hero {
  background: var(--black);
}
.hero h1 {
  color: var(--white);
  padding: 0 24px 32px;
  text-align: center;
}
.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 600 / 338;
  object-fit: cover;
}
