*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}
:root{
    --skyBlue:#45aaf2;
    --blue: #2d98da;
    --green: #55efc4;
    --aqua: #00cec9;
    --purple: #6c5ce7;
    --pink: #fd79a8;
    --ligthGreen: #55efc4;
    --red: #d63031;
}

/*   Home Section  */
.home {
    height: 100vh;
    width: 100%;
    
}

.home .items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    font-weight: 300;
}

.home .items .name {
    font-weight: 400;
    background: rgba(85,239,196,.8);
    font-size: 40px;
}
.home .items .description {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 3px;
    display: flex;
    margin: 10px 0;
}
.home .items .description .color1 {
    background: rgba(116,185,255,.5);
    margin-right: 2px;
}
.home .items .description .color2 {
    background: rgba(250,177,160,.5);
    margin-left: 2px;
}
.home .items .btns {
    height: auto;
}

.home .items .btns a{
    background: var(--skyBlue);
    color: #fff;
    padding: 1px 20px;
    text-transform: uppercase;
    text-decoration: none;
}


.home .animatedArea{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: -3;
}
.home .animatedArea li {
    position: absolute;
    display: block;
    list-style: none;
    width: 25px;
    height: 25px;
    opacity: .8;
    animation: animate 15s linear infinite;
    bottom: -100px;
}
.home .animatedArea li:nth-child(1){
    background: var(--aqua);
    left: 86%;
    width: 80px;
    height: 80px;
}
.home .animatedArea li:nth-child(2){
    background: var(--purple);
    left: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}
.home .animatedArea li:nth-child(3){
    background: var(--pink);
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 5.5s;
    animation-duration: 10s;
}
.home .animatedArea li:nth-child(4){
    background: var(--skyBlue);
    left: 20%;
    width: 150px;
    height: 150px;
    animation-duration: 10s;
    animation-delay: 0s;
}
.home .animatedArea li:nth-child(5){
    background: var(--ligthGreen);
    left: 86%;
    width: 80px;
    height: 80px;
}
.home .animatedArea li:nth-child(6){
    background: var(--pink);
    left: 15%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}
.home .animatedArea li:nth-child(7){
    background: var(--red);
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}
.home .animatedArea li:nth-child(8){
    background: var(--aqua);
    left: 16%;
    width: 30px;
    height: 30px;
    animation-delay: 5s;
}
.home .animatedArea li:nth-child(9){
    background: var(--red);
    left: 76%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

.home .animatedArea li:nth-child(10){
    background: var(--aqua);
    left: 26%;
    width: 20px;
    height: 20px;
    animation-delay: 2.5s;
}

@keyframes animate{
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100%{
        transform: translateY(-800px) rotate(0deg);
        opacity: 0;
    }

}

/* End Home section*/

/* Start About Section */
.about {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.about .nav {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: space-around;
    background: var(--skyBlue);
    align-items: center;
    opacity: .9;
}

.about .nav a{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 0 30px;

}
.about .nav a:hover {
    background: rgba(0,0,0, .1);

}

.about .me {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 95vh;
    flex-direction: column;
    margin: 0 auto;
}

.about .me .title{
    font-weight: 400;
    background: rgba(85,239,196,.8);
    font-size: 40px;
    margin-bottom: 20px;
}
.about .me .text {
    text-align: center;
}
.about .me .text p {
    margin-top: 10px;
    font-weight: 300;
    font-size: 18px;
}
.about .me .text p .color {
    background: rgba(129,236,236,.8);
}

.about .animatedBubbles{
    position: absolute;
    top: 100vh;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}
.about .animatedBubbles li {
    position: absolute;
    display: block;
    bottom: -100px;
    list-style: none;
    width: 50px;
    height: 50px;
    opacity: .8;
    animation: bubbles 15s linear infinite;
    border-radius: 1000px;
}


.about .animatedBubbles li:nth-child(1){
    background: var(--aqua);
    left: 86%;
    width: 80px;
    height: 80px;
}
.about .animatedBubbles li:nth-child(2){
    background: var(--purple);
    left: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}
.about .animatedBubbles li:nth-child(3){
    background: var(--pink);
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 5.5s;
    animation-duration: 10s;
}
.about .animatedBubbles li:nth-child(4){
    background: var(--skyBlue);
    left: 20%;
    width: 150px;
    height: 150px;
    animation-duration: 10s;
    animation-delay: 0s;
}
.about .animatedBubbles li:nth-child(5){
    background: var(--ligthGreen);
    left: 86%;
    width: 80px;
    height: 80px;
}
.about .animatedBubbles li:nth-child(6){
    background: var(--pink);
    left: 15%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}
.about .animatedBubbles li:nth-child(7){
    background: var(--red);
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}
.about .animatedBubbles li:nth-child(8){
    background: var(--aqua);
    left: 16%;
    width: 30px;
    height: 30px;
    animation-delay: 5s;
}
.about .animatedBubbles li:nth-child(9){
    background: var(--red);
    left: 76%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

.about .animatedBubbles li:nth-child(10){
    background: var(--aqua);
    left: 26%;
    width: 20px;
    height: 20px;
    animation-delay: 2.5s;
}

@keyframes bubbles{
    0%{
        transform: translateY(0);
        opacity: 1;
    }
    100%{
        transform: translateY(-800px);
        opacity: 0;
    }
}

/* End about section */


/* Start Projects Section */
.projects {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.projects .nav {
     width: 100%;
    height: 5vh;
    display: flex;
    justify-content: space-around;
    background: var(--pink);
    align-items: center;
    opacity: .9;
}

.projects .nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 0 30px;
}

.projects .nav a:hover{
    background: rgba(0,0,0,.1);
}


.projects .container{
    width: 100%;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
}
.projects .container .text {
    font-weight: 400;
    background: rgba(108,92,231,.6);
    font-size: 40px;
    margin: 0 0 5vh 0;
}
.projects .container .grid {
    padding: 10px;
    width: 80%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    text-align: center;
    opacity: .9;
}
.projects .container .grid .card{
    color: white;
    padding: 10px;
}
.projects .container .grid .card .tech {
    font-size: 40px;
    margin: 10px 0;
    letter-spacing: 7px;
}

.projects .container .grid .card .title {
    font-size: 20px;
    letter-spacing: 2px;
    margin: 20px 0 0 0; 
}
.projects .container .grid .card .techName{
    font-weight: 300;
}
.projects .container .grid .card .description {
    font-weight: 300;
    margin: .5em 0  1em 0;
    letter-spacing: 1px;
}
.projects .container .grid .card .description a {
    color: #fff;
    z-index: 2;
}
.projects .container .grid .card:nth-child(1){
    background: var(--skyBlue);
}
.projects .container .grid .card:nth-child(2){
    background: var(--pink);
}
.projects .container .grid .card:nth-child(3){
    background: var(--red);
}
.projects .container .grid .card:nth-child(4){
    background: var(--purple);
}

.projects .animatedParticles{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 200vh;
    overflow: hidden;
    z-index: -2;
}
.projects .animatedParticles li {
    position: absolute;
    display: block;
    bottom: -100px;
    list-style: none;
    height: 10px;
    width: 10px;
    background: #fff;
    background: black;
    animation: animatedParticles 15s linear infinite;
    z-index: -1;
}

.projects .animatedParticles li:nth-child(1){
    background: var(--aqua);
    left: 86%;
    width: 80px;
    height: 80px;
}
.projects .animatedParticles li:nth-child(2){
    background: var(--purple);
    left: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.5s;
    animation-duration: 10s;
}
.projects .animatedParticles li:nth-child(3){
    background: var(--pink);
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: 5.5s;
    animation-duration: 10s;
}
.projects .animatedParticles li:nth-child(4){
    background: var(--skyBlue);
    left: 20%;
    width: 150px;
    height: 150px;
    animation-duration: 10s;
    animation-delay: 0s;
}
.projects .animatedParticles li:nth-child(5){
    background: var(--ligthGreen);
    left: 86%;
    width: 80px;
    height: 80px;
}
.projects .animatedParticles li:nth-child(6){
    background: var(--pink);
    left: 15%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
}
.projects .animatedParticles li:nth-child(7){
    background: var(--red);
    left: 50%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
}
.projects .animatedParticles li:nth-child(8){
    background: var(--aqua);
    left: 16%;
    width: 30px;
    height: 30px;
    animation-delay: 5s;
}
.projects .animatedParticles li:nth-child(9){
    background: var(--red);
    left: 76%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

.projects .animatedParticles li:nth-child(10){
    background: var(--aqua);
    left: 26%;
    width: 20px;
    height: 20px;
    animation-delay: 2.5s;
}

@keyframes animatedParticles{
    0%{
        transform: translateY(0);
        opacity: 1;
    }
    100%{
        transform: translateY(-800px);
        opacity: 0;
    }
}



/*End Projects Section*/

/*Start contact Section*/
.contact{
    height: 100vh;
    width: 100%;
}

.contact .nav {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: space-around;
    background: var(--aqua);
    align-items: center;
    opacity: .9;
}

.contact .nav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    padding: 0 30px;
}
.contact .nav a:hover{
    background: rgba(0,0,0,.1);
}
















