* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("images/hobbies-thukpa-grid.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

nav {
  position: relative;
  z-index: 10;
  padding: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

nav a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

.container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 200px);
  gap: 0;
  padding: 20px;
}

.title {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  font-size: 48px;
  color: #2f30d6;
  font-weight: normal;
  align-self: center;
  font-family: "GFS Didot", serif;
  font-size: 70px;
  line-height: 75px;
}

.vertical-text {
  grid-column: 6 / 7;
  grid-row: 1 / 3;
  writing-mode: vertical-rl;
  transform: rotate(360deg);
  align-items: start;
  font-size: 48px;
  color: #2f30d6;
  font-weight: normal;
  align-self: center;
  justify-self: center;
  font-family: "GFS Didot", serif;
  margin-right: 110px;
  margin-bottom: 320px;
}

.big-bowl {
  grid-column: 3 / 4;
  grid-row: 1 / 4;
  width: 325%;
  align-self: center;
  justify-self: center;
  margin-top: 80px;
  margin-left: 200px;
}

.small-bowl {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
  width: 130%;
  margin-top: -70px;
  margin-left: 10px;
}

/* Small bottom-left label */
.small-label {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  font-size: 14px;
  color: black;
  align-self: start;
}

/* First paragraph */
.para1 {
  grid-column: 5 / 6;
  grid-row: 1 / 3;
  font-size: 14px;
  color: black;
  max-width: 250px;
  align-self: center;
  margin-top: -110px;
  text-align: justify;
}

/* Second paragraph */
.para2 {
  grid-column: 5 / 6;
  grid-row: 2 / 4;
  font-size: 14px;
  color: black;
  max-width: 250px;
  align-self: center;
  margin-top: -170px;
  text-align: justify;
}
