*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", serif;
    font-weight: 400px;
    font-style: normal;
    background: white;
}


body{
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    
}

.main{
    /* border: 1px solid blue; */
    display:flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 70px;
     opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}
/* .comment{
    text-align: right;
}
.comment i {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 1px 1px 1px 1px black;
} */
.left-container{
    /* border: 1px solid pink; */
    display: flex;
    flex-direction:column;
}
.img-section{
    /* background-color: black; */
    height: 200px;
    width: 200px;
    padding: 2px;
    border-radius: 50%;
}
.img-section img{
    width: 100%;
    height: 100%;
    border-radius:50% ;
}
.outline{
    height: 220px;
    width: 220px;
    border: 2px solid pink;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    padding: 10px
}

.about-section{
    /* border: 1px solid pink; */
    width: 500px;
}

.icon-section{
    /* border-radius: 1px solid pink; */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    
}

.btn{
    color: black!important;
    text-align: left !important;
    transition: width 0.3s ease;
}

.btn:hover {
  color: red !important;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn svg{
    width: 21px;
    height: 21px;
    color:rgb(192, 178, 178);
    padding-right: 5px;
}
.btn svg:hover{
    background-color: #0056b3 !important;
}
.right-container{
    /* border-radius: 1px solid blue; */
    display: flex;
    align-items: center;
    justify-content: center
}

.right-container img{
    width: 400px;
}

@media(max-width: 768px){
    .main{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .outline{
        margin-left: 50px;
    }
    .img-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; 
        width: 100%;
        height: 100%;
        border-radius:50% ;
}
    .about-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 50px;
        width: 80%;
    }
    .icon-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    footer{
        width: 100%;
        max-width: 100%;
        padding: 20px 0;
        text-align: center;
    }
    .btn{
        border: 1px solid black !important;
        width: 80%;
        margin-bottom: 10px;
    }

    .right-container img{
        display: none;
    }

}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


