@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Gothic&display=swap');

#page9{
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}


#formsec{
    height: 90%;
    width: 60%;
    border-radius: 2vw;
    border: 3.5px solid rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#formsec div{
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    width: 90%;
    gap: 1vw;
}

#formsec div label{
    font-family: "League Gothic", serif;
    font-size: 3vw;
    font-weight: 500;
    letter-spacing: 0px;
    color: white;
}

#formsec div input{
    width: 98%;
    height: 3.5vw;
    font-size: 1.5vw;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid rgb(255, 255, 255);
    padding-left: 10px;
    color: white;
    background-color: transparent;
}


#formsec div input:focus{
    outline: none;
    border-bottom: 4px solid rgb(80, 94, 255);
}




#formsec button{
    height: 5vw;
    width: 5vw;
    position: absolute;
    border-radius: 50%;
    background: transparent;
    border: 3px solid rgb(255, 255, 255);
    right: 5%;
    bottom: 5%;
    transform: rotateZ(-40deg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    background-image: url("../image/right-arrow.png");
}

#alternate{
    height: 90%;
    width: 30%;
    position: relative;
    gap: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#cartoon{
    width: 100%; 
    height: 60%;
    border-radius: 2vw;
    border: 3.5px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

#cartoon #face{
    width: 20vw;
    height: 20vw;
    position: relative;
    border-radius: 50%;
    background-color: rgb(123, 96, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#cartoon #face #eye{
    height: 5vw;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#cartoon #face #eye div{
    height: 5vw;
    width: 5vw;
    /* border: 2px solid black; */
    /* background-color: rgb(23, 23, 23); */
    border-radius: 50%;
    position: relative;
    color: #ffffff;
}

#cartoon #face #eye div h1{
    font-size: 10vw;
    /* line-height: 1vw;
    inline-size: 2vw; */
    /* background-color: rgb(255, 0, 0); */
    transform: translate(-18%,-15%);
    /* transform: rotateZ(-90deg); */
}

#cartoon #face #mouth {
    height: 5vw;
    width: 3vw;
    background-color: rgb(13, 13, 13);
    border-radius: 3vw;
    margin-top: 4vw;
    animation: mouthanimation 2s ease-in-out infinite alternate;
}

@keyframes mouthanimation {
    from {
        height: 3vw;
    }
    to {
        height: 6vw; /* Increased height for animation effect */
    }
}


#altermedia{
    width: 100%;
    height: 40%;
    position: relative;
    border-radius: 2vw;
    border: 3.5px solid rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2%;
}


#altermedia .medialink{
    height: 20%;
    width: 90%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

#altermedia .medialink .mediaIcon{
    height: 3vw;
    width: 3vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    border: 3px solid rgb(255, 255, 255);
    border-radius: 50%;
    margin-left: 2%
}

#altermedia .medialink h2{
    margin-left: 3%;
    font-size: 1.5vw;
}

@media only screen and (max-width: 800px) {
    #cartoon{
        display: none;
    }

    #page9{
        flex-direction: column;
        gap: 2vh;
        height: 150vh;
    }
    
    #formsec{
        width: 95%;
        height: 120%;
        border-radius: 5vh;
    }

    #formsec div label{
        font-size: 5vh;
    }

    #formsec div input{
        font-size: 2.5vh;
        color: #171717;
        font-weight: bold;
        height: 3vh;    
    }

    #formsec div{
        gap: 2.5vh;
    }

    #formsec button{
        height: 10vh;
        width: 10vh;
    }

    #alternate{
        width: 95%;
        height: 140%;
        border-radius: 5vh;
    }

    #altermedia .medialink h2{
        font-size: 2vh;
    }

    #altermedia .medialink .mediaIcon{
        height: 5vh;
        width: 5vh;
    }
}