@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');

body {
  font-family: 'Noto Serif', serif;
  overflow-x: hidden;
  background-color: rgb(146, 136, 124);
}

.zoom-in {
  cursor: zoom-in;
}

/*spacing for the navbar */
.offset::before {
  display: block;
  content: "";
  height: 7.4rem;
  z-index: -1;
}

.navbar {
  font-weight: 700; /* bold */
  background-image: url("../img/wallpaper.png");
  border-bottom: 0.3rem solid darkred;
}

.underline {
  min-width: max-content;
  height: .2rem;
  background-color: darkred;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.parallax {
  position: absolute;
  /* Set a specific height */
  min-height: 100vh;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: -1;
}

.home-inner {
  /* The image used */
  background-image: url("../img/20220418_092816.jpg");
  /* Position of the image */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.heading {
  position: absolute;
  top: 60%;
  width: 100%;
  z-index: 1;
}

h1 {
  color: darkred;
  font-weight: 700;
  text-shadow: 1px 1px #fff;
}

h4 {
  color: white;
}

.container {
  margin-bottom: 2rem;
}

footer {
  padding: .5rem;
}
footer, a, a:hover {
  color: black;
}
