@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
  color: #f1faff;
}

a{
  display: block;
  text-decoration-line: none;
}

button{
  cursor: pointer;
}

nav a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}


/* navbar contents css for mobile and desktop starts */
.nav-links{
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links:hover{
  color:#d97706;
}

@media (max-width: 1024px) {
  #navbar_content{
    z-index: 50;
    position: fixed;
    inset: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    --tw-bg-opacity: 0.8;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
    padding: 100px 0px;
    backdrop-filter: blur(12px);
  }

  #navbar_content a:hover{
    transform: scale(1.2) ;
  }
}

/* navbar contents css for mobile and desktop ends */

/* font css begins  */

.font-open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* font css ends  */

/* contact form border corners css starts*/

.corner-borders-form::before,
.corner-borders-form::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid white;
}

.corner-borders-form::before {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}

.corner-borders-form::after {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
}

/* contact form border corners css ends*/

/* events paragraph css begins  */

#events-container p{
  --tw-text-opacity: 1;
  font-weight: 400;
  text-align: justify;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

/* events paragraph css ends  */


/* about us content first letter css begins */

#about-content::first-letter{
  font-size: 3rem /* 48px */;
  line-height: 1;
  font-weight: 700;
  color: #d97706;
}

/* about us content first letter css ends */


/* event description conten begins */

.event-content h1,h2,h3,h4,h5,h6,p,a{
  font-size: 16px;
  font-family: 400;
  padding-bottom: 10px;
}

/* event description conten ends */