
html, body { 
  max-width:100vw;
  align-items:center; 
  justify-content:center;
  display:flex; 
  margin:0; 
  flex-direction:column;
  scroll-behavior: smooth;

}

  .header {
    font-weight: 300;
    font-family: "Londrina Solid";
    font-size: 70px;
    color: #242781;
    text-align:center;
  }


  .container {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    margin-bottom:-1rem;
    padding:10px 20px;
  }




  h1, h2, h3, h4 {
    font-family: "Londrina Solid", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #242781;

  }
  h1 {

    font-size: 50px;
    max-width:95%;
    /* text-shadow:-1px -1px 0 white, 1px -1px 0 white, -1px  1px 0 white, 1px  1px 0 white;  */
    text-shadow: 0px 0px 4px white;
  }

  h2 {
    font-size: 45px;
    margin-bottom:0;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 30px;
  }

  p {
    font-size: 30px;
    font-family: "Marvel", sans-serif;
    font-weight: 600;
    font-style: normal;
    /* color: black; */
    padding:1rem;
  }

  a {
    color:#242781;
    text-decoration: none;
  }

  .small {
    font-size:24px;
    padding:0;
  }
  

  section {
    width:90%;
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:1rem;
    /* background-color:red; */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position:center; */
    justify-content:center;
    align-items:center;
  }

  
  .stack {
    display:flex;
    justify-content: center;
    flex-wrap:wrap;
    align-items:center;
    gap:1rem;
  }

  .stack h2,p {
    direction: ltr;
    margin:0;
  }
  
  .tier {
    display:grid;
    justify-items:center;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
    margin: 0.5rem 1rem;
    width:80%;max-width:1600px;
  }

  .rotateR, .rotateL{
    cursor:pointer;
    transition: 
    background-color 0.3s ease, transform 0.3s ease;
    }

  .rotateR:hover {
      transform:scale(1.15) rotate(-2deg);
  }

  .rotateL:hover {
      transform:scale(1.15) rotate(2deg);
  }

  .card {
    padding:0.8rem;
    max-width:250px;
    max-width:95%;

  }
  
  .email-form {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    gap:2rem;
    justify-content:center;
    /* background-color:red; */
    margin:0rem 1rem;
    width:80%;
  }

  
  .email-form input[type="email"]  {
    padding: 0.6em;
    border: 0.1rem solid #9b59b6; 
    border-radius: 1rem;
    font-size: 24px;
    box-sizing: border-box;
    width: 100%;
    max-width:400px;
    font-family: "Marvel";
    border-radius:1.3rem;
    box-shadow: 0.15em 0.3em rgb(189, 154, 255);
  }
.email-form input[type="email"]:focus  {
  border:solid 2px #9b59b6;
}
  .submit-btn {
    background-color: #9B81F0; 
    color: white;
    border: none;
    position:relative;
    padding: 0.7rem 2.3rem;
    text-transform:uppercase;
    border-radius: 1.3rem;
    max-width:16rem;
    font-size: 1.6rem;
    font-family:"Marvel";
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .submit-btn:hover {
    background-color: #4C56DF;
    transform: scale(1.2);
  }



  .form-label{
    display:block;
    margin-bottom:2rem;
    text-transform:uppercase;
  }

  .image-grid {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    max-width:1800px;
    /* display: grid; */
    /* place-items: center; */
    /* grid-template-columns: repeat(3, 1fr); */
    /* grid-auto-columns:26vw; */


    width:100%;
    /* background-color:red; */

  }


  .btn img {
    /* width:100vw;
    max-width:40rem; */
    /* width:28rem; */
    width:clamp(14rem,24vw,30rem);
    max-width:95%;
    /* width:clamp(); */
    cursor:pointer;
    transition: 
    background-color 0.3s ease, transform 0.3s ease;
    }


  .btn:hover {
      transform:scale(1.1) rotate(-2deg);
      filter:hue-rotate(20deg);
    }
  
  .slide img {
    width: 22rem;
    height: auto;
    cursor:pointer;
    transition: 
      background-color 0.3s ease, transform 0.3s ease;}

  .slide:hover {
      transform:scale(1.03) rotate(1deg);
      filter:hue-rotate(40deg);
    }

  .enlarge{
    display:inline-block;
    cursor:pointer;
    transition: color 0.3s ease, transform 0.3s ease-in-out;
  }

  .enlarge:hover {
    transform:
      scale(1.07);
  }

  .emphasize{
    display:inline-block;
    font-family:"Londrina Solid", sans-serif;
    font-weight: 300;
    color:#9b59b6;
    cursor:pointer;
    transition: color 0.3s ease, transform 0.3s ease-in-out;
  }

  .emphasize:hover {
    transform:
      scale(1.15);
      color:#9B81F0;
  }

iframe{

  width:40rem;
  max-width:50vw;
  aspect-ratio:5/2.85;
  border: none;
  border-radius:0.5rem;
  transition:transform 0.3s ease-in-out;
  max-width:100%;

}

iframe:hover{
  transform:scale(1.05)
}


.format{
  /* width:35vw; */
  max-width: 100%;

  /* min-height:fit-content; */
  margin:1rem;
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items:center;
  gap:1rem;
  padding:1rem;
}


.purple {
  background-color:#242781;
  padding:4rem 2rem;
  border-radius:1rem;
  color:#c9cbf3;
}

.float{ 
  animation:updown 3s ease-in-out infinite;
}


@keyframes updown{
  0% {transform: translateY(0);}
  50% {transform: translateY(-1rem);}
  100%{transform: translateY(0);}
}

.example {
  display:flex;
  flex-wrap:wrap;
  column-gap:20px; 
  row-gap:10px;
  max-width:100%;
  text-align:left;
  height:auto;
  width:auto;
  min-height:fit-content;

}

.item {
  border-radius:1rem;
  position:relative;
  display:inline-block;
  padding:10px;
  background-position: center;
  background-size:cover;
  flex-grow:1;
  max-width:500px;
  overflow:hidden

}

.item > * {
  color:white;
  position:relative;
  z-index: 1;

}
.item * {
  color:white;
  position:relative;
  z-index: 2;

}


.item:before {
  background-image:linear-gradient(to bottom, #9b81f085, #3e2e9bcc);
  content:'';
  position:absolute;
  left:0; 
  top:0;
  width:100%; 
  height:100%;
  display:inline-block;
  border-radius:inherit;
  z-index:1;
  
}

.pro-examples {
  /* background-color:blue; */
  display:flex;
  width:100%;
  align-items:center;
  height:fit-content;
  justify-content:start;
  flex-wrap:wrap;
  
}
img.logo {
    width: 45rem;
    max-width:100%;
    height: auto;
    padding-top: 1rem;
    padding-left: 1rem;
  }


  .text-box{ 
    background-color:#242781;
    border-radius:1rem;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    height:20rem;
    width:34rem;
  }
    

  .white-text{
      color:#c9cbf3;

  }

.column{
  flex-wrap:wrap;
  align-items: center;
  justify-content:center;
  float:center;
  width:3.5rem;
  height:3.5rem;

}


.team {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  row-gap:2rem;
  column-gap:4px;
  align-items:center;
  padding-bottom:3rem;

}
.circle-container {
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  
}
.circle-container:hover .circle-text {
  opacity: 1;  
}

.circle-text{
  position: absolute;
  font-family:"Marvel","sans-serif";
  transform:translateY(65px);
    color: #4C56DF;
  font-size: 1.2rem;
  white-space: nowrap;
  opacity: 0;      
  transition: opacity 0.3s ease;
  pointer-events: none;}

.circle{
  width: 4.3rem;
  height: 4.3rem;
  margin:0.2em;
  border-radius: 50%; 
  object-fit: cover;
  border:dashed 3px #c9cbf3;
  background-color:#4C56DF;
  display:inline-block;
  cursor:pointer;
  transition: transform 0.3s ease-in-out;

}
  .circle:hover {
    transform:
      scale(1.2); 
  }

  #cat {
    left:0;
    position:absolute;
    padding:2rem;
    bottom:15px;
  }

 
  .theme, .special{
  font-family:"Marvel","sans-serif";
  background-color: #9B81F0;
  padding: 0.5em;
  padding-inline: 1.5em;
  border-radius:26px;
  display:inline-block;

  color: #eff0ff;

  cursor:pointer;
  transition: all 400ms ease-in-out;
  border:dashed 5px #eac4f3;
  font-size:clamp(2rem,2.6vw,3rem);
  margin:1rem;
  }

 

  .theme:hover {
    transform:
      scale(1.07);
      filter:hue-rotate(40deg); 

  }  

  .special:hover{
    box-shadow:0 10px 10px rgba(0, 0, 0, 0.253);
    transform: translateY(-10px) scale(1.07);
    border:dashed 5px #eac4f3;
    filter:hue-rotate(40deg); 

  }

  .special:focus{
      outline:solid 2px #c9cbf3;
  }
  
  .landing-page {
    min-height:100vh;
    width:100vw;
    background: url("assets/crumpled paper.png") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* position: relative; 
    overflow: hidden;    */
  }

  .landing-page::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url("assets/tear paper.png") no-repeat bottom center;
    background-size: cover;
  } 


/* media queries */

@media(max-width:490px){

  .btn img {
    width:90%;
  }
}


@media (max-width: 600px){
  .btn img {
    width:90%;
  }

  #tentacle-cat{
    width:100px;
  }
  #cat1 {
    display:none;
  }
  nav{
    display:none;
  }

  img.logo{
    width:90vw;
    height:auto; 
    display:block;
    padding-top: 1rem; 
    margin: 0 auto;
  }



}
@media(max-width:800px){



  #tentacle-cat{
    display:none;
    }
  nav {
    display:none;
  }
  #cat1 {
    display:none;

  }


}

@media (max-width:1000px){
   #tentacle-cat{
    display:none;
    }



}

@media (max-width:1200px){
  #tentacle-cat{
    width:200px;
}
  nav {
    display:none;
 }
  #cat1, #cat3 {
    display:none;

  }



}

@media (min-width:1200px){
 
  #cat2, #cat3{
    display:none;
  }

  .format {
    width:35vw;
  }

  .special, .theme {
    border-radius:100vw;
  }



  
}

