body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('fullbloom.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-family: 'custom';
}

@font-face {
  font-family: 'custom';
  src: url('merdekamahardik.otf'), format('opentype');
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-size: 4rem;
  color: rgb(0, 0, 0);
  text-align: center;
  z-index: 2;
  margin: 40px 0;
}

/* Style the SVGs */
svg {
  position: absolute;
  width: 80%;
  height: 150px;
  fill: none;
  pointer-events: none;
}

.nav-link {
  font-size: 1.2rem;
  fill: rgb(0, 0, 0);
  cursor: pointer;
  pointer-events: all;
}

/* Position of top and bottom arches */
#top-arch {
  top: 10%;
}
#bottom-arch {
  bottom: 10%;
  transform: rotate(180deg);
}

/* Optional hover effect */
.nav-link:hover {
  fill: #ffcc00;
}