/* Add this at the very top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Moul&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    background: linear-gradient(135deg, #E0F7FA, #E1F5FE);
}
p {
    font-family: "Bayon";
}
.border_img:nth-of-type(1) p {
    margin-left: 23px;
}
.border_img:nth-of-type(2) p {
    margin-left: 40px;
}
.border_img:nth-of-type(3) p {
    margin-left: 40px;
}
.border_img:nth-of-type(4) p {
    margin-left: 55px;
}
h1 {
 
    margin-left: 25px;
    margin-top: 10px;
    font-family: "Dangrek";

}

.box {
    background-color: #333;
    width: 35%;
    height: 1px;
}
.box1 {
     background-color: #333;
    width: 20%;
    height: 2px;
    margin-top: 3px;
}

.group-image{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin: 20px 10px 20px 50px;
}
.border_img h2 {
    font-family: "Moul";
    margin-top: 10px;
}
.border_img:nth-of-type(1) h2 {
    margin-left: 25px;
}

.border_img:nth-of-type(2) h2 {
    margin-left: 80px;
}
.border_img:nth-of-type(4) h2 {
    margin-left: 20px;
}
.border_img:nth-of-type(3) h2 {
    margin-left: 10px;
}

.group-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid rgba(100, 225, 225, 0.587);
    box-shadow: 0 0 0 8px #232827; /* Outer color ring */
    object-fit: cover;
}
.btn-container {
    display: flex;
    gap: 10px;
    margin-left: 30%;
    margin-bottom: 20px;
}
.border_img h1 {
  margin-left: 20%;
}
/* .border_img:nth-of-type(2) h1 {
  margin-left: 25%;
} */
.border_img:nth-of-type(4) h1 {
  margin-left: 30%;
} 
/* From Uiverse.io by vinodjangid07 */ 
.btnGit {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all .3s;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all .3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.bgGit {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #181818;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all .3s;
}

.btnGit:hover .bgGit {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.btnGit:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
  backdrop-filter: blur(4px);
}

/* From Uiverse.io by vinodjangid07 */ 
.Btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: transparent;
  position: relative;
  /* overflow: hidden; */
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.3s;
}

.svgContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  letter-spacing: 0.8px;
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(156, 156, 156, 0.466);
}

.BG {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #1877f2;
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
  transition: all 0.3s;
}

.Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
}

.Btn:hover .svgContainer {
  border: 1px solid rgba(230, 230, 230, 0.466);
  background-color: rgba(204, 204, 204, 0.466);
  backdrop-filter: blur(4px);
}
