
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');
/*common css*/
html,
body{
    margin: 0;
    padding: 20px;
    font-family: 'Arvo', serif;
    }
body
/*header*/
.navbar-brand{
    font-size: 2rem;
    color: #365486;
    }
.nav-link {
    font-size: 1.3rem;
    color: #365486;

        }
/*home*/
#home{
    width: 100%;
    min-height:100vh;
    height: auto;
    }
#particles-js{
    width: 100%;
    min-height: 100vh;
    position: absolute;
    top:0; left:0;
    background : #7FC7D9
    }
#name{
    margin-top: 12rem;
    font-size:5rem;
    color: #fff;
    font-weight: bold;
    text-align: right;
    }
#tagline{
    margin-top: 1rem;
    font-size:2.5rem;
    color: #fff;
    text-align: right;
    }
#learn-more{
    padding: 0.4rem;
    max-width: 10rem;
    color: #fff;
    margin: 0 auto;
    display: block;
    border: 5px solid #fff;
    border-radius : 1rem;
    text-decoration: none;
    text-align: right;
}

#learn-more:hover{
    text-decoration: none;
    color: #2D3250;
    }

#prop {
      width:100%;
      max-width: 25rem;
      height: auto;
      right: 1rem;
      border: 5px solid #365486; /* Add a 5px solid border with color #444 */
      animation: morph 8s linear infinite;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      position: absolute;

      top: 12rem;
      overflow: hidden;
      margin: auto;
      transition: all 1s ease-in-out;
    }
#prop img{
        width: 100%;
        height: auto;

        object-fit: cover; /* Maintain aspect ratio while covering the container */
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;

        }

    @keyframes morph {
      0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      }

      50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
      }

      100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      }
    }
    @media (max-width: 768px) {
    #prop {
    top: 1rem;
    margin-bottom:1rem;
    }
    }


/*resume*/
#aboutme{
    width: 100%;
    height: auto;
    padding: 4rem 0 4rem 0;


    }
#aboutme .card{
    margin-left: auto;
    margin-right: auto;
    }
#aboutme .card img{
    height: 180px
}
/*Contact*/

#contact{
    width: 100%;
    height: auto;
    padding: 4rem 0;
    }
#contact form{
    width: 100%;
    }
#contact form .submit-message{
    margin-left: 15px;
    margin-right: 15px;
    background: #365486;
    color: #fff;
    }
#contact form .submit-message:hover{
    color: #7FC7D9;
}

/*footer*/

footer{
    width: 100%;
    height: auto;
    padding: 2rem 0 4rem;
    background: #DCF2F1;
    }
footer ul{
    list-style: none;
    padding-left: 0;
    }
footer .back-to-top{
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #0F1035;

    }

footer .back-to-top:hover{
    text-decoration: none;
    color: #7FC7D9;
    }

footer ul#social{
    list-style: none;
    padding-left: 0;
    text-align: right;
    }

footer ul#social li{
    display: inline-block;
    margin-left: 1rem;
    }

footer ul#social li a{
    text-decoration: none;
    color: #365486;
    font-size: 2rem;
    }

footer ul#social a:hover{
    text-decoration: none;
    color: #7FC7D9;

    }
footer p{
    color: #365486;
    text-align: right;
    }

