
*{
    box-sizing: border-box;
    font-size: 'Sen', sans-serif;
}

header{
    z-index: 100;
}

.pageTitle{
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color .4s;
    color: #4B4B4B;
    /* z-index: 99; */
}

.pageTitle:hover{
    cursor: pointer;
    color: #F87474;
}

html::-webkit-scrollbar{
    width: .7rem;
}

html::-webkit-scrollbar-thumb{
    background-color: #4B4B4B;
    border-radius: 10px;
}
html::-webkit-scrollbar-track{
    background-color: #F9F2ED;
}

a{
    text-decoration: none;
}


body{
    /* font-family: Intro-Trial; */
    font-family: 'Sen', sans-serif;
    background-color: #faf0e9;
    margin: 0;
    padding: 0;
    overflow: hidden;
    
}
body h1{
    font-weight: 900;
    color: #F87474;
    font-size: max(6vw, 50px);
    margin-bottom: 0;
}

body h2{
    font-weight: 400;
    color: #4B4B4B;
    margin-top: 0;
    margin-bottom: 0;
    font-size: max(1.6vw, 25px);
}

section{
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    overflow: visible; 
    /* border: red 1px solid; */
}



.nav{
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    position: relative;
    z-index: 100;
}

.nav li{
    display: inline;
}

.nav a{
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
    text-decoration: none;
    color: #4B4B4B;
    font-weight: bold;
    font-size: 1.5rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nav a:hover{
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.253);
}

.home{
    background-color: #3AB0FF;
    /* background-color: #F87474; */
}
.projects{
    background-color: #FFB562;
}
.skills{
    background-color: #F87474;
}
.resume{
    background-color: #F87474;
}

.links{
    margin-top: 20px;
}

.links li{
    display: inline;
}

.links a{
    text-decoration: none;
    margin-left: 5px;
    margin-right: 10px;
    color: #4B4B4B;
}


.links a:hover{
    color: #F87474;
}

.mid{
    /* width: 1100px; */
    width: max(55%, 800px);
    height: 470px;
    margin: 5em 5em 5em 4em;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
    z-index: 0;

}

.one{
    width: 165px;
    right: 60px;
    bottom: 765px;
    /* border: red 1px solid; */
}

.two{
    width: 285px;
    height: 765px;
    right:20px;
    bottom: 0px;
    /* border: blue 1px solid; */
}
.three{
    width: 355px;
    height: 615px;
    right:305px;
    bottom: 0px;
    /* border:#FFB562 1px solid; */
}

.four{
    width: 255px;
    height: 200px;
    right: 660px;
    bottom: 0px;
    /* border: hotpink 1px solid; */
}

.five{
    width: 100px;
    height: 110px;
    right: 915px;
    bottom: 0px;
    /* border: yellow 1px solid; */
}

.six{
    width: 270px;
    height: 60px;
    right: 290px;
    bottom: 615px;
    /* border: aquamarine 1px solid; */
}


.water{
    display: flex;
    margin-left: auto;
    background-image: url(../svg/water.svg);
    background-repeat: no-repeat;
    width: 1020px;
    height: 820px;
    position:fixed;
    bottom: 0px;
    right: 0px;
    /* border: purple 1px solid; */
    z-index: 0;
}

.pads{
    width: 731px;
    height: 612px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    /* border: red 1px solid; */
}

#pad1{
    background-image: url(../svg/pad_1.svg);
    width: 133px;
    height: 128px;
    position: absolute;
    top: 80%;
    left: 0;
    transition: .5s;
}



#pad2{
    background-image: url(../svg/pad_1.svg);
    width: 133px;
    height: 128px;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: rotate(-50deg);
    transition: 1s;
    /* transition-timing-function: ease-in-out; */
}

#pad3{
    background-image: url(../svg/pad_1.svg);
    width: 133px;
    height: 128px;
    position: absolute;
    top: 10%;
    left: 55%;
    transform: rotate(50deg);
    transition: .5s;
}

#pad4{
    background-image: url(../svg/pad_1.svg);
    width: 133px;
    height: 128px;
    position: absolute;
    top: 40%;
    left: 80%;
    transform: rotate(150deg);
    transition: .5s;
}

#pad5{
    background-image: url(../svg/pad_1.svg);
    width: 133px;
    height: 128px;
    position: absolute;
    top: 80%;
    left: 60%;
    transform: rotate(150deg);
    transition: .5s;
}



.frog{
    background-image: url(../svg/frog.svg);
    transform: rotate(50deg);
    width: 59px;
    height: 62px;
    position: absolute;
    top: 85%;
    left: 5%;
    
}

.projButton{
    padding: 10px, 10px;
    background-color: #FFB562;
    color: #F9F2ED;
    border-radius: 5px;
    width: 200px;
    font-size: 40px;
    text-align: center;
    margin-inline: auto;
    margin-top: 80px;
    display: none;
}

.projButton:hover{
    background-color: #f7a64b;
}

.burger{
    visibility: hidden;
    right: 20px;
    top: 20px;
    position: absolute;
    /* background-color: #3AB0FF; */
    /* z-index: 99; */
    padding: 5px;
}

.exitMenu{
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile_nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    display: block;
    z-index: 98;
    background-color: #044d91;
    padding-top: 120px;
    transition: 0.4s;
}

.mobile_nav.is-active{
    left: 0;
}


.mobile_nav a{
    display: block;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin: 0 auto 16px;
    padding: 12px 16px;
    color: #F9F2ED;
    text-decoration: none;
    font-size: 25px;
}

span{
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00ccff50;
    transform: scale(0.01);
    box-shadow: 0 0 10px #00b5fd5b,
                0 0 20px #00d0ff67,
                0 0 40px #00d0ff57,
                0 0 60px #00ccff8e,
                0 0 80px #00ccffde,
                0 0 120px #044d91;
    border-radius: 50%;
    border: #f9f2ed25 1px solid;
    pointer-events: none;
    transition: 2s;
}

span:hover::before{
    
    transform: scale(1);
    transition: 0s;
}

.contactDiv{
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    /* border: #044d91 solid 1px; */
    width: 550px;
    margin-left: 3rem;
}

input, textarea{
    display: block;
    padding: .5rem;
    width: 100%;
    border: none;
    background-color: white;
}

label{
    display: block;
    padding:.5rem 0;
}

.contactDiv button{
    background-color: #F87474;
    border: none;
    width: auto;
    border-radius: 2px;
    padding: .3rem .6rem;
    font-family: 'Sen', sans-serif;
    margin: 1rem 0;
}

.contactDiv button:hover{
    cursor: pointer;
}

.contactDiv h3{
    margin: 0;
    margin-top: 1.5rem;
}

.contactDiv textarea{
    resize: none;
}



@media screen and (max-width: 1800px) {

    .water{
        width: 872px;
        height: 701px;
    }


    .pads{
        /* border: solid red 1px; */
        bottom: 10px;
        right: 0;
    }

    .one{
        bottom: 620px;
    }
    
    .two{
        height: 620px;
    }
    .three{
        width: 240px;
        height: 490px;
    }
    
    .four{
        width: 150px;
        right: 550px;
    }
    
    .five{
        height: 130px;
        right: 715px;
    }
    
    .six{
        width: 200px;
        bottom: 490px;
    }
}

@media screen and (max-width: 1400px) {
    .water{
        width: 772px;
        height: 620.6px;
    }

    .pads{
        /* border: 1px solid red; */
        width: 631px;
        height: 512px;
    }


}

@media screen and (max-width: 1300px) {

    .water{
        /* display: none; */
        position: relative;
        width: 400px;
        height: 322px;
        bottom: 0;
        right: 0;
        margin-top: 20rem;
    }
    .mid{
        width: 90%;
        margin-inline: auto;
    }

    .burger{
        visibility: visible;
    }

    .nav{
        display: none;
    }

    .projButton{
        display: block;
    }

    .pads{
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
        scale: .45;
        position: relative;
        top: -140px;
        left: -40px;
    }

    .pads section{
        display: none;
    }

   .mid{
    margin-top: 7rem;
   }

   .projButton{
    margin-top: 3rem;
   }

   .contactDiv{
    margin-left: 0;
    margin-top: 2rem;
    width:auto;
    position: relative;
    margin-bottom: 120rem;
   }

    
}






