* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navbar-height: 59px;
}

/* Navigation Bar */
#navbar {
  display: flex;
  align-items: center;
  position: sticky;
  top: 0px;
}

#navbar::before {
  content: "";
  background-color: black;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: 0.7;
}

/* Navigation Bar: Logo and Image */
#logo {
  margin: 10px 34px;
}

#logo img {
  height: 59px;
  margin: 3px 6px;
}

/* Navigation Bar: List Styling */

#navbar ul {
  display: flex;
  font-family: "Baloo Bhai", cursive;
}

#navbar ul li {
  list-style: none;
  font-size: 1.3rem;
}

#navbar ul li a {
  color: white;
  display: block;
  padding: 3px 22px;
  border-radius: 20px;
  text-decoration: none;
}

#navbar ul li a:hover {
  color: black;
  background-color: white;
}

/* Home Section */
#home {
  display: flex;
  flex-direction: column;
  padding: 3px 200px;
  height: 250px;
  justify-content: center;
  align-items: center;
}

#home::before {
  content: "";
  position: absolute;
  /* background: url("../images/26.jpg") no-repeat center center/cover; */
  height: 680px;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: -1;
  opacity: 0.89;
}

#home h1 {
  color: black;
  text-shadow: 1px 1px 10px #fff, 1px 1px 10px #ccc;
  text-align: center;
  font-family: "Bree Serif", serif;
}

#home p {
  color: rgb(63, 4, 200);
  text-shadow: 0.5px 0.5px 5px #fff, 0.5px 0.5px 5px #ccc;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Bree Serif", serif;
}
/* activity Section */
#activity {
  margin: 34px;
  display: flex;
}
#activity .box {
  border: 2px solid brown;
  padding: 34px;
  margin: 2px 55px;
  border-radius: 28px;
  background: #f2f2f2;
  margin-bottom: 20px;
}

#activity .box img {
  height: 160px;
  margin: auto;
  display: block;
}

#activity .box p {
  font-family: "Bree Serif", serif;
}

/* Contact Section */
#contact {
  position: relative;
}
#contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 165%;
  z-index: -1;
  opacity: 0.7;
  background-color: rgb(134, 120, 240);

  /* background: url("../contact.jpg") no-repeat center center/cover; */
}
#contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 34px;
}
#contact-box input,
#contact-box textarea {
  width: 100%;
  padding: 0.5rem;
  border-radius: 9px;
  font-size: 1.1rem;
}

#contact-box form {
  width: 40%;
}

#contact-box label {
  font-size: 1.3rem;
  font-family: "Bree Serif", serif;
}

footer {
  background: black;
  color: white;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5%;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer div {
  width: 100px;
  height: 100px;
}

/* Utility Classes */
.h-primary {
  font-family: "Bree Serif", serif;
  font-size: 3.8rem;
  padding: 12px;
}
.h-secondary {
  font-family: "Bree Serif", serif;
  font-size: 2.3rem;
  padding: 12px;
}

.btn {
  padding: 6px 20px;
  border: 2px solid white;
  background-color: brown;
  color: white;
  margin: 17px;
  font-size: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
}

.center {
  text-align: center;
}

/* slider */

.activity-container {
  align-items: center;
  background: #e3e3e3;
  display: flex;
  justify-content: center;
  height: 100vh;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* // Styling */
.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 230px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
}

.slide-track {
  animation: scroll 50s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  height: 250px;
  width: 500px;
  margin-left: 5px;
}
.slide img {
  height: 230px;
  width: 260px;
}
