@import url("./style/uiComponentLibrary.min.css");
@import url("./code-snippet.css");
@import url("./navbar.css");
@import url("./footer.css");
@import url("./documentation.css");


body {
  padding: 0px;
  margin: 0;
  background-color: rgba(179, 205, 228, 0.865);
  min-height: 100px;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
  /* overflow-y: hidden; */
}


/* section 1 start here */

.s1-div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(210, 227, 242);
  height: 400px;
  width: 100%;
}

.left-div {
  height: 400px;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  left: 50px;
}

.right-div {
  height: 400px;
  width: 50%;
  right: 10px;
  /* position: absolute; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.s1-div h1,
.code-snippet-section h1 {
  font-family: "Secular One", sans-serif;
  font-size: 30px;
  color: rgb(47, 85, 198);
}

.s1-div h3,
.code-snippet-section h3 {
  font-family: "Philosopher", sans-serif;
  color: #4f435a;
}

.s1-div h4,
.code-snippet-section h4 {
  font-family: "Philosopher", sans-serif;
  color: #403447;
}

.right-div img {
  height: 90%;
  width: 90%;
  animation: animate-1 1s linear infinite;
}
@keyframes animate-1{
  0%{
    filter: hue-rotate(0deg);
  }

  25%{
    filter: hue-rotate(10deg);
  }
  50%{
    filter: hue-rotate(20deg);
  }
  100%{
    filter:hue-rotate(-10deg) ;
  }

}

.left-div button {
  background-image: linear-gradient(to right, #6640ed, rgb(138, 78, 178));
  border: none;
  color: white;
  padding: 10px 28px;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  font-size: 1.2vw;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  /* Safari */
  transition-duration: 0.4s;
}

.left-div button:hover {
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),
    0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
/* 
.component-num {
   height: 50px;
   width: 100px;
} */
/* 
.component-num h2 {
   color: rgb(37, 23, 45);
   font-size: 20px;
}

.component-num h3 {
   line-height: 0;
   color: rgb(44, 36, 49);
   font-size: 17px;

}*/

@media(max-width:780px){
   .s1-div{
      flex-direction: column-reverse;
      height: 520px;
   }
   .left-div{
      width: 100%;
      height: 250px;
      margin-left: 10px;
      left: auto;
      /* bottom: 10px; */
   }
   .left-div button{
      font-size: 14px;
   }
   .s1-div h1{
      font-size: 24px;
   }
   .left-div h4,h3{
      font-size: 14px;
   }
   .right-div{
      /* display: none; */
      width: 100%;
      height: 250px;
      /* top: 0px;
      margin: 0px; */
   }
   

}


/* section 1 ends here */

/* section 2 code snippet start here */

/* Code Snippet */
.code-snippet-section {
  background-color: white;
  display: flex;
  justify-content: center;
  height: 300px;
  width: 100%;
}

.code-snippet {
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.code-snippet div.code-toolbar {
  bottom: -120px;
  width: 60vw;
}


.code-snippet div.code-toolbar > .toolbar {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

code:not(.language-html code) {
  color: red;
  background-color: #0000001a;
  display: inline-block;
}

.code-snippet-section pre {
  /* position: absolute; */
  top: -40px;
  border: 2px solid black;
  border-radius: 10px;
}

.code-snippet-heading {
  position: absolute;
  left: 3.5rem;
}
@media(max-width:780px){
   .code-snippet div.code-toolbar{
      width: 90vw;
   }
   .code-snippet-section h1{
      font-size: 24px;
   }
   .code-snippet-section h4{
      font-size: 14px;
   }
   .code-snippet-heading{
      left: 20px;
   }
}
/* section 2 code snippet ends here */
/* about section start here */
.container {
  max-width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  h1 {
      font-size: 1.5em;
  
    }
}

/* about section ends here */