@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
}

body{
     /* font-family: "Sedan SC", serif; */
     font-family: "Mukta", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.section-1{
  background: linear-gradient(to bottom, #000, #161d26);
  height: 100vh;
  min-height: 30rem;
  max-height:55rem ;
   color: white;
   letter-spacing: 10%;
}
.section-1 nav{
  border-bottom: 1px solid #666;
}
.title-container{
  height: 90%;
  
}
nav .title{
  color: #fff;
}
.section-1 .title, nav .title{
  font-family: "Sedan SC", serif;
  font-size: 2rem;
}

.footer{
  background: #292929;
  border-top: solid gray 1px;
  color: white;
   padding: 10px 200px ;
}
.main-title{
  font-size: 3.5rem;
  text-align: center;
}
.sub-title{
  font-size: 2rem;
  text-align: center;
  color: rgb(255, 255, 255,0.7);
}
.instructor-card{
  min-width: 15rem;
  margin: 20px;
  min-height: 15rem;
  max-width: 600px;
  padding: 4px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.instructor-card header{
  color:orangered;
  border-bottom: 1px solid #cdcdcd;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 550;
}
.instructor-card  div{
 padding: 20px 10px;
  color:#777;
  line-height: 150%;
}
.instructor-card  h1{
  font-size: 2rem;
  font-weight: 600;
  margin: 10px 0;
  line-height: 150%;
}
.section-3{
  background-color: #000;
  color: white;
  padding: 10px 200px ;
  line-height: 200%;;
  text-align: justify;
}
.section-3 h1{
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 600;
}
.section-3 h2{
   margin: 2rem 0;
  font-size: 1.4rem;
  font-weight: 600;
}
.section-3 h3{
   margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: 500;
}
 .sticky-nav {
      position: -webkit-sticky; /* For Safari */
      position: sticky;
      top: 0;
      z-index: 1000;
    background-color: #000;
    }
    .section-4{

  padding: 10px 200px ;
  line-height: 200%;;
}
.qna{
  padding: 15px 0;
  border-bottom: 2px solid #989898;
}
.qna.no-border{
  padding: 15px 0;
  border-bottom: none;
}
.qna .head{
  color: rgb(44, 150, 70);
  font-size: 1.5rem;
  font-weight: bold;
}
.qna .body{
  font-size: 1rem;
  font-weight:400;
  color: #666;
}
.form-card{
  min-width: 15rem;
  margin: 20px;
  min-height: 15rem;
  padding: 30px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media(max-width:768px){
  html{
    font-size: 80%;
  }
  .main-title{
    font-size: 2rem;
  }
  .sub-title{
    font-size: 1rem;
  }
  .section-3, .section-4,.footer{
  padding: 10px 40px ;
}
  .section-1 .title, nav .title{
  
  font-size: 1.2rem;
}

}
@media(max-width:425px){
  html{
    font-size: 75%;
  }
  .section-1 .title, nav .title{
  
  font-size: 1rem;
}
}
