/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color: #deeeff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */
.containers{
    width: 800px;
    height: 500px;
    background-color: #fff;
    padding:  30px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    border-radius: 20px;
}
.contents-p{
    margin-top: 20%;
    margin-left: 50%;;
}
.tab_box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid rgb(229,229,229);
    font-size: 18px;
    font-weight: 600;
    position: relative;
}
.tab_box .tab_btn{
    font-size: 18px;
    font-weight: 600;
    color: #919191;
    background: none;
    border: none;
    padding: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab_box .tab_btn.active{
    color: #272727;
}
.content_boxs{
    padding: 20px;
}
.content_boxs .contents{
    display: none;
    animation: moving .5s ease;
}
/* @keyframes moving{
    from{transform: translateY(50px); opacity: 0;}
    to{transform: translate(0px);opacity: 1 ;}
} */
.content_boxs .contents.active{
    display: block;
}
.content_box .contents h2{
    margin-bottom: 10px;
}
.line{
    position: absolute;
    top: 56px;
    left: 116px;
    width: 90px;
    height: 5px;
    background-color: #272727;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
/* Add styles for the sections */
/* section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
  } */
  .srcs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .section-content-me {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */
    max-width: 800px;
    margin: 0 auto;
    margin-left: 35%;
    margin-top: 5%;
  }

  .section-content-me img {
    width: 50%;
    height: auto;
    margin-right: 50px;
    align-items: center;
    /* vertical-align: middle; */
  }
  .ptag{
   align-items:  end;
  }
  .mess{
    margin-top: 10%;
    margin-left: 21%;
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 50%;
	margin-left: 25%;
	justify-content: center;
	align-items: center
  }
