@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,200;1,600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #eee;
  height: 100vh;
  font-family: "Poppins", sans-serif;
}
.about-container {
  position: relative;
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.left-side {
  position: relative;
  width: 400px;
}
.left-side img {
  width: 100%;
  height: 100%;
}
.right-side {
  position: relative;
  width: 300px;
  margin-top: 75px;
  margin-left: 30px;
}
.right-side h2 {
  position: relative;
  margin-top: -100px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
.right-side .name {
  width: 400px;
  height: 50px;
  background: #fff;
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  margin-left: -100px;
  margin-bottom: 30px;
}
.right-side .name h1 {
  padding: 10px 10px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}
.right-side span {
  display: block;
  margin-bottom: 20px;
  width: 80px;
  height: 3px;
  background: #ff523b;
}
p {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
}
.icon {
  position: relative;
  margin-top: 30px;
}
.icon .fa {
  width: 50px;
  height: 50px;
  padding: 15px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  color: #000;
  font-size: 20px;
}
.icon .fa:hover {
  background: #000;
  color: #fff;
  transition: 0.5s;
  cursor: pointer;
}
.about {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
