@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
}

.main {
  background: url("../img/event_img1.jpg") no-repeat center center/cover,
    rgba(25, 26, 48, 0.664);
  background-blend-mode: multiply;
  height: 100%;
  width: 100%;
}

form * {
  font-family: inherit;
}

/* subscribing box after  */
.feedback {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 150px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: calc(100% - 50%);
  background: rgba(0, 3, 41, 0.952);
  transition: all 400ms ease-in;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
}

.result {
  visibility: hidden;
  opacity: 0;
}

nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: #010323b6;
  backdrop-filter: blur(20px);
}

input,
textarea,
button {
  font-family: inherit;
  font-weight: 500;
}

/* to activate navigation toggle button */

.active {
  display: block;
}
