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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  min-width: 300px;
}

a {
  text-decoration: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "nav"
    "name";
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, tan 0%, wheat 100%);
}


.hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 80%;
  object-fit: contain;
  z-index: 1;
}

.top-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 10;
}

.top-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-nav a {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.top-nav a:hover {
  color: chocolate;
}

.name-display {
  grid-area: name;
  align-self: end;
  justify-self: start;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.name-display span {
  font-size: 6rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.05em;
}
