.dancing-script-regular {
  font-family: "Dancing Script", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}

body,
html {
  font-family: "Poppins", system-ui;
  height: 100%;
  margin: 0;
}

p,
h1,
a {
  /* font-family: "Lato", sans-serif; */
  font-weight: 600;
  color: #292409;
  transition: 400ms ease-in-out;
  font-family: "Poppins", system-ui;
}

.white {
  color: #fff !important;
}

p:hover,
a:hover,
h1:hover {
  transform: scale(1);
  /* color: rgb(0, 99, 28) !important; */
}

.bgimg {
  background-image: url("./img1.jpg");
  transition: background-image 1s ease-in-out;
  height: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
  font-family: "Courier New", Courier, monospace;
  font-size: 25px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

.bottomleft-old {
  position: absolute;
  bottom: 0;
  left: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
}

.bottomleft {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background: #ffffff2b;
}

.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 30px;
  background: #00000063;
  border-radius: 12px;
}

.anchor {
  text-decoration: none;
}

hr {
  margin: auto;
  width: 40%;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  height: 100vh;
  transition: background-color 1s ease-in-out;
  background-color: #dbe0b538;
}

.arrow.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
