* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient( #5f018e, #aa00ff,#FF00FF);
    color: white;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden; 
    font-family: Arial, Helvetica, sans-serif ;
}
header {
    width: 100%;
    position: fixed;
    height: 120px;
    z-index: 10;
    background-color: #5f018e;
}
#top1 {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1vw 1vw 0 2vw;
}
#logodiv {
    height: 85px;
    width: 85px;
    display: flex;
    align-items: center;
}
#logodiv a{
    background-image: url(logo.png);
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    display: block;
    text-indent: -9999px;
}
#logoname{
    cursor: default;
    text-shadow: 0px 0px 10px;
}
nav {
    width: 100%;
    height: 30px;
}
#navlist {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
}
#navlist li:hover{
    text-shadow: 0px 0px 4px;
}
#navlist li{
    list-style-type: none;
    margin-left: 3vw;
}
#navlist li a{
    color: white;
    text-decoration: none;
    font-size: 12px;
}
#homeli {
    padding-left: 1.5vw;
}
.boxtop {
    height: 120px;
}
.orangediv{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
}
.orangebox {
    width: 20px;
    height: 20px;
    background-color: orangered;
    margin-left:5vw;
    margin-right: 2vw;
    animation: oranged 1s linear;
}
@keyframes oranged{
    0% {opacity: 0; transform: translateX(100px);}
    100% {opacity: 1; transform: translateX(0);}
}
#containerparent1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
}
#containerbox1 div h2 {
    font-size: clamp(40px, 7vw, 50px) ;
    font-weight: 100;
    animation: h2 0.5s linear
}
@keyframes h2 {
    0% {opacity: 0; transform: translateX(-100px);}
    100% {opacity: 1; transform: translateX(0);}
}
#containerbox1 div h1 {
    font-size: clamp(40px, 7vw, 70px) ;
    font-weight: 200;
    animation: h1 0.5s linear
}
@keyframes h1 {
    0% {opacity: 0; transform: translateX(100px);}
    100% {opacity: 1; transform: translateX(0);}
}
#containerbox1 div:nth-child(3){
    margin-top: 20px;
    height: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
#button {
    width: 200px;
    height: 50px;
    background-color: #FF00FF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgb(176, 222, 255);
    background-color: aqua;
    animation: learn 3s infinite;
}
@keyframes learn{
    0% {scale: 1;}
    50% {scale: 1.2}
    100% {scale: 1}
}
#button a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5f018e;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}
/* PAGE-CONTENT */

#page1{
    display: block;
    min-height: 100vh;
}
#page2 {
    display: none;
    min-height: 100vh;
}
#page3 {
    display: none;
    min-height: 100vh;
}
#page4 {
    display: none;
    min-height: 100vh;
}
#page5 {
    display: none;
    min-height: 100vh;
}
#page6 {
    display: none;
    min-height: 100vh;
}
#page7 {
    display: none;
    min-height: 100vh;
}
#page8 {
    display: none;
    min-height: 100vh;
}
#page9 {
    display: none;
    min-height: 100vh;
}
/* PAGE 2*/

.nameholder {
    width: 100%;
    cursor: default;
    animation: nameholder 1s linear;
}
@keyframes nameholder{
    0% {opacity: 0; transform: translateX(100px);}
    100% {opacity: 1; transform: translateX(0);}
}
.nameholder h2{
font-size: clamp(15px, 2vw, 30px);
}
#containerparent2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
    flex-wrap: wrap;
}
.secname{
    text-align: center;
    padding-bottom: 10px;
    padding-top: 10px;
}
.secpic{
    width: 250px;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}
@keyframes secpic {
    0% {scale: 1;}
    50% {scale: 1.3}   
    100% {scale: 1}
}
.secpic img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    animation: secpic 3s infinite;
}

/* page 3  */

#containerparent3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox3 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
}
#box31{
    width: 100%;
    height: auto;
}
#box32  {
    width: 100%;
    height: auto;
}
#text3 span{
    font-size: clamp(9px, 4vw, 30px);
}
#text3{
    margin-left: 1vw;
}
#pic3{
    width: clamp(250px, 100%, 100%);
    height: 600px;
    border-radius: 15px;
}
#pic3 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* page 4 */

#containerparent4 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox4 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
}
#box41{
    width: 100%;
    height: auto;
}
#box42  {
    width: 100%;
    height: auto;
}
#text4 span{
    font-size: clamp(9px, 4vw, 30px);
}
#text4{
    margin-left: 1vw;
}
#pic4{
    width: clamp(250px, 100%, 100%);
    height: 600px;
    border-radius: 15px;
}
#pic4 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* PAGE 5 */
#containerparent5 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox5 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
}
#box51{
    width: 100%;
    height: auto;
}
#box52  {
    width: 100%;
    height: auto;
}
#text5 span{
    font-size: clamp(9px, 4vw, 30px);
}
#text5{
    margin-left: 1vw;
}
#pic5{
    width: clamp(250px, 100%, 100%);
    height: 600px;
    border-radius: 15px;
}
#pic5 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
/* PAGE 6 */ 
#containerparent6 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox6 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
}
#box61{
    width: 100%;
    height: auto;
}
#box62  {
    width: 100%;
    height: auto;
}
#text6 span{
    font-size: clamp(9px, 4vw, 30px);
}
#text6{
    margin-left: 1vw;
}
#pic6{
    width: clamp(250px, 100%, 100%);
    height: 600px;
    border-radius: 15px;
}
#pic6 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}


/* page 7 */
#containerparent7 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox7 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
}
.gallerypics {
    height: 400px;
    width: 310px;
    overflow: hidden;
    border: aqua 3px solid;

}
.gallerypics:hover{
    overflow-x: auto;
}
.gallerypics img {
    height: 100%;
    height: 100%;
    object-fit: cover;
}
.gallerypics img:active{
    scale: 2;
    transition: 300ms;
}
/* page 8 */
#page8{
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
}
#just8{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 30px;
}
#parent8{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}
.aboutinfo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 310px;
    height: auto;
    min-height: 310px;
    padding: 10px;
    background-color: rgb(255, 201, 243);
    color: #5f018e;
    box-shadow: -10px 10px 0 palevioletred;
    border-radius: 10px;
    cursor: default;
    animation: aboutinfo 2s linear;
}
@keyframes aboutinfo{
    0% {opacity: 0; transform: translateX(-100px);}
    100% {opacity: 1; transform: translateX(0);}
}
.aboutinfo span:not(:last-child){
    font-weight: bold;
}
.aboutinfo:hover, .bot8:hover {
    background-color: rgb(255, 242, 252);
    box-shadow: -10px 10px 10px palevioletred;
}
.aboutinfo:last-child img{
    animation: fb 2s infinite;
}
@keyframes fb{
    0% {scale: 1;}
    50% {scale: 1.5;}
    100% {scale: 1;}
}
.aboutinfo:last-child a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    width: 100%;
    min-height: 310px;
}
.aboutinfo:last-child:hover {
    background-color: rgb(244, 244, 244);
    box-shadow: -10px 10px 10px palevioletred;
}
.bot8{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    min-height: 310px;
    padding: 10px;
    background-color: rgb(255, 201, 243);
    color: #5f018e;
    box-shadow: -10px 10px 0 palevioletred;
    border-radius: 10px;
    cursor: default;
    animation: bot8 2s linear;
}
@keyframes bot8{
    0% {opacity: 0; transform: translateX(100px);}
    100% {opacity: 1; transform: translateX(0);}
}
/* page 9 */

#containerparent9 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#containerbox9 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    height: auto;
    border: 6px solid aqua;
    border-radius: 30px;
    padding: 20px;
    cursor: default;
    gap: 30px;
}
#top9{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: rgb(255, 201, 243);
    color: #5f018e;
    box-shadow: -10px 10px 0 palevioletred;
    border-radius: 10px;
    cursor: default;
}
#content9 {
    display: flex;
    gap: 30px;
}
#box91, #box92 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info9 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: rgb(172, 223, 255);
    color: #5f018e;
    box-shadow: -10px 10px 0 rgb(113, 133, 237);
    border-radius: 10px;
    cursor: default;
}
.info9:hover, #top9:hover{
background-color: rgb(244, 244, 244);
box-shadow: -10px 10px 10px palevioletred;
}
#footer {
    margin-top: 20px;
    cursor: default;
    height: 80px;
    background-color: #5f018e;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
}
#caramel {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00FFFF;
}
/* responsive design */

@media screen and (max-width: 650px) {
    #containerbox3 {
        flex-wrap: wrap;
    }
    #containerbox4 {
        flex-wrap: wrap;
    }
    #containerbox5 {
        flex-wrap: wrap;
    }
    #containerbox6 {
        flex-wrap: wrap;
    }
    #navlist {
        justify-content: space-evenly;
    }
    #content9 {
        flex-wrap: wrap;
    }
}
