* {
  margin: 0;
  box-sizing: border-box;
}

body {
  display: grid;
  grid-template-rows: repeat(5, fit-content(100%));
  grid-template-columns: repeat(1, minmax(0, 1fr));
  font-family: "Hanken Grotesk", sans-serif;
  align-items: center;
  justify-items: center;
}

/* TEXT FORMATTING */
h1 {
  color: #222;
  font-family: "HK Grotesk";
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

h2 {
  color: #222;
  font-family: "HK Grotesk";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.cursive {
  font-style: italic;
}

p {
  color: #222;
  text-align: center;
  font-family: "HK Grotesk";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}


/* NAVBAR */
.navbar {
  display: flex;
  width: 1280px;
  height: 79px;
  padding: 12px 25px;
  justify-content: space-between;
  align-items: center;
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
}

.nav-logo p {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
}

.nav-links {
  display: flex;
  width: 602px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.nav-button {
  display: flex;
  padding: 12px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 10px;
  border: 2px solid #222;
}

/* WELCOME SECTION */
.welcome-section {
  display: flex;
  width: 1230px;
  height: 707px;
  justify-content: space-between;
  align-items: center;
  grid-row: 2 / span 1;
  grid-column: 1 / span 1;
  justify-self: center;
}

.welcome-text {
  display: grid;
  width: 602px;
  height: 655px;
  row-gap: 35px;
  column-gap: 35px;
  flex-shrink: 0;
  grid-template-rows: fit-content(100%) 197px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.welcome-reel {
  display: flex;
  width: 602px;
  height: 706px;
  flex-direction: column;
  justify-content: center;
  border: 2px solid #222;
  border-radius: 10px;
}

.welcome-reel h1 {
  text-align: center;
  line-height: 0.8;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #222;
  border-radius: 10px;
  
}

.icon-container img {
  width: 75%;
  height: 75%;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.scroll-hint img {
  margin-top: 12px;
  width: 30px;
  height: 30px;
}