:root{
    --dark-pink: #fd0094;
    --lime-pink: #ff00e6;
    --dark-lime-pink: #ffaf38;
    --smooth-pink: #eb46c2;
    --light-pink: #fd00c6;
    --leaf-pink: #439ee9;
    --ts: 1.3rem;
    --motto: 9vmin;
    --motto-2: 3rem;
    --ts1: 2.2vw;
}
body{
    margin: 0;
    box-sizing: border-box;
    background-color: var(--light-pink);
    overflow-x: hidden;

}
/*---------HEADER STYLING--------*/
.header{
    background-color: var(--dark-lime-pink);
    width: 99.7%;
    height: 12vmin;
    display: flex;
    flex-direction: row;
    color: var(--light-pink);
    -webkit-text-stroke: 1px black;
    border: 2px solid var(--dark-pink);
    border-radius: 0px 0px 5px 5px;
}
.logo{
    width: 9vmin;
    height: 9.5vmin;
    border: 2px solid var(--dark-pink);
    border-radius: 50%;
    margin: 0.4% 0% 0% 2%;
}
.title{
    margin-top: 0.1%;
    font-size: var(--motto);
    text-shadow: 2px 2px rgb(0, 0, 0);
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lobster', cursive;
}
/*----------MAIN CONTENT STYILNG----------*/
.front{
    height: 38vw;
    width: 90vw ;
    margin: 0 auto;
    margin-top: 1%;
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 0px 30px;
    grid-template-areas: 
        "front-left front-right"
        "below below"; 
}
/* -- Custom Scrollbar Styling -- */

::-webkit-scrollbar{
    width: 1vw;
    background: var(--leaf-pink);
    border: 0.5px solid #000000;
    border-radius: 2px;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--dark-pink);
    border: 0.5px solid #06164d;
    border-radius: 4px;
    background-clip: padding-box;
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #59738288; 
  }
/*--------FRONT LEFT SIDE STYLING---------*/
.front-left{
    grid-area: front-left;
    height:max-content;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font-size: var(--ts1);
}
.motto{
    padding: 5px;
    margin-left: 2%;
    margin-top: 10%;
    font-size: 4vw;
    font-family: cursive;
    font-weight: 600;
}
.start{
    background-color: var(--leaf-pink);
    height: 3vw;
    width: 10rem;
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    font-size: 1.3vw;
    text-decoration:none;
}
.start a{
    text-decoration:none;
    color: #000;
    -webkit-text-stroke: 0.5px black;
}
.start:hover{
    cursor:pointer;
    background-color: #ffffff;
    box-shadow: 0 5px 5px #1e92ff;
}
/*--------FRONT RIGHT SIDE STYLING---------*/
.front-right{
    grid-area: front-right;
    height:80%;
    box-sizing: border-box;
    width: 90%;
}
.front img{
    padding-top: 3vw;
    height: 25vw;
    width: 90%;
}
/*------- FORM SCREEN STYLING----------*/
.entry-sec{
    height: 42vw;
    width: 90vw ;
    margin: 0 auto;
}
.motto-2{
    padding: 5px;
    margin-left: 2%;
    margin-top: 2%;
    font-size: var(--motto-2);
    font-family: cursive;
    font-weight: 600;
}
.motto-2-1{
    padding: 5px;
    margin-left: 2%;
    margin-top: 2%;
    font-size: var(--motto-2);
    font-family: cursive;
    font-weight: 600;
}
.form-body-2{
    display: flex;
    flex-direction: row;
}
.form{
    background-color: var(--leaf-pink);
    height: max-content;
    width: 40vw ;
    border: 2px solid black;
    border-radius: 5px;
    margin: -2% auto;
}
.form-body-2 img{
    height: 30vw;
    width: 30vw ;
    margin: -1% auto;
}
.form-body-2 ul{
    list-style: none;
}
.form-sizing{
    margin-left: 8%;
    margin-top: 5%;
    font-size: 1.5vw;
    font-family: 'Architects Daughter', cursive;
    font-family: 'Lobster', cursive;
    font-family: 'Roboto Mono', monospace;
    text-shadow: 0.3px 0.3px #000;
}
.name{
    background-color: aliceblue;
    border-radius: 5px;
}
.submit-btn{
    background-color: var(--dark-lime-pink);
    height: 2rem;
    width: 7vw;
    border: 2px solid rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    font-size: 1.3vw;
    text-decoration:none;
    margin-left: 30%;
    margin-bottom: 1%;
}
.submit-btn:hover{
    cursor:pointer;
    background-color: #d3eb01;
    fill: #d3eb01;
    box-shadow: 0 5px 5px #0b6bfc;
}

/*--------INFORMATION SECTION STYLING---------*/
.info-1{
    margin-left: 3%;
    font-size: var(--ts);
    width: 90%;
    font-family: cursive;
}
.info-sec{
    width: 90vw ;
    margin:  auto;
}

.chakra{
    height: 30%;
    width: 30%;
    float:right;
    position: static;
    border: 5px solid var(--dark-pink);
}
.headings{
    padding: 5px;
    font-size: 2rem;
    font-family: cursive;
    font-weight: 600;
    margin-left: 5%;
}
.vid{
    margin: 1% 5%;
    width: 90vw;
    height: 40vw;
    border: 5px solid black;
}
/*----------FOOTER STYLING----------*/
.footer-sec{
    width: 99.5%;
    background-color: var(--dark-lime-pink);
    margin-bottom: -1%;
    border: 3.5px solid var(--dark-pink);
    font-size: var(--ts);
    font-family: cursive;
}
.footer-1{
    display: flex;
    justify-content: space-evenly;
    color: rgb(0, 0, 0);
    text-shadow: 0.5px 0.5px #000;
}
.footer-1 a{
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/*--------MEDIA QUERIES--------*/
@media only screen and (min-device-width: 1087px) and (max-device-width: 1250px) {
    :root{
        --motto-2: 2rem;
    }
  }
@media only screen and (min-device-width: 823px) and (max-device-width: 1086px) {
    .start{
        width: 7rem;
    }
    :root{
        --motto-2:2rem;
        --ts1: 2.5vw;
    }
}
@media only screen and (min-device-width: 759px) and (max-device-width: 822px) {
    :root{
        --motto-2: 2.2rem;
        --ts1: 2.5vw;
    }
    .start{
        width: 7rem;
    }
    .submit-btn{
        height: 1.5rem;
    }
    .motto-2-1{
        margin-top: 8%;
    }
}
@media only screen and (min-device-width: 675px) and (max-device-width: 758px) {
    :root{
        --ts1: 2.5vw;
        --motto-2: 2rem;
    }
    .motto-2-1{
        margin-top: 12%;
    }
    .start{
        width: 5rem;
    }
    .submit-btn{
        height: 1.5rem;
    }

}
@media only screen and (min-device-width: 631px) and (max-device-width: 675px) {
    :root{
        --ts1: 2.5vw;
        --motto-2: 2rem;
    }
    .motto-2-1{
        margin-top: 12%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1.5rem;
    }

}
@media only screen and (min-device-width: 587px) and (max-device-width: 630px) {
    :root{
        --ts1: 2.5vw;
        --motto-2: 2rem;
    }
    .motto-2-1{
        margin-top: 15%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1.5rem;
    }

}
@media only screen and (min-device-width: 503px) and (max-device-width: 586px) {
    :root{
        --ts1: 3vw;
        --motto-2: 2rem;
    }
    .motto-2{
        margin-top: 10%;
    }
    .motto-2-1{
        margin-top: 35%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1.5rem;
    }
    .form-sizing{
        font-size: 2vw;
    }

}
@media only screen and (min-device-width: 451px) and (max-device-width: 502px) {
    :root{
        --ts1: 3vw;
        --motto-2: 1.5rem;
    }
    .motto-2{
        margin-top: 30%;
    }
    .motto-2-1{
        margin-top: 35%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1.5rem;
    }
    .form-sizing{
        font-size: 2vw;
    }
    .form-body-2{
        display: flex;
        align-content: flex-start;
    }
    .name{
        width: 60%;
    }
    .front-left{
        font-size: var(--ts);
    }
}

@media only screen and (min-device-width: 400px) and (max-device-width: 451px) {
    :root{
        --ts1: 3vw;
        --motto-2: 1.5rem;
        --motto:2rem;
    }

    .motto-2{
        margin-top: 40%;
    }
    .motto-2-1{
        margin-top: 35%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1.5rem;
    }
    .form-sizing{
        font-size: 2vw;
    }
    .form-body-2{
        display: flex;
        align-content: flex-start;
    }
    .name{
        width: 60%;
    }
    .front-left{
        font-size: var(--ts);
    }
}

@media only screen and (min-device-width: 355px) and (max-device-width: 399px) {
    :root{
        --ts1: 0.8rem;
        --motto-2: 1rem;
        --motto:1.2rem;
    }

    .motto-2{
        margin-top: 60%;
    }
    .motto-2-1{
        margin-top: 35%;
    }
    .start{
        width: 5rem;
        font-size: 1.5vw;
    }
    .submit-btn{
        height: 1rem;
        width: 2rem;
    }
    .form-sizing{
        font-size: 2vw;
    }
    .form-body-2{
        display: flex;
        align-content: flex-start;
    }
    .name{
        width: 60%;
    }
    .front-left{
        font-size: var(--ts);
    }
    .headings{
        font-size: 1rem;
    }
}