@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');




*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body{
  font-family: poppins,sans-serif;
}



/* about me header styles */
.about-me-header {
 height: 70vh;
 width: 100%;
 background-color:#008080;
 padding: 20px 5%;
 display: flex;
 align-items: center;
 justify-content:space-between;
 
 
}
.about-me-header h1 {
  /* width: 50%; */
  color: #fff;
  font-size: 6rem;
}

.img-container-about-me {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color:#FFC72C;
  border-radius: 50%;
  transform: translateY(30%);
}
.img-container-about-me img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.scribble{
  width: 300px;
  height: 60px;
}
