
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  display: grid;
  place-items: center;
  background-image: url(Img/Bg.jpg);
  background-repeat: no-repeat;
  border: 0;
  padding: 0;
  min-height: 100vh;
}

main{
  position: relative;
  width: 700px;
  height: 300px;
  border-radius: 20px;
  box-shadow: 1px 3px 5px 6px rgba(0, 0, 0, 0.25);
}

main > i{
  transform: translate(50%, -50%);
  font-size: 6rem;
  cursor: pointer;
}

main > div img{
  width: 180px;
  height: 200px;
  border-radius: 50px;
  background-size: cover;
  background-position: top;
}

main > div div{
  position: relative;
  max-width: min-content;
}

main > div div::after{
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  width: 180px;
  height: 200px;
  border-radius: 50px;
  border-right: 1px solid #000;
}

main > div p{
  font-family: Inria Sans;
  font-size: 1.2rem;
  font-weight: 700;
}

main > p{
  position: relative;
  text-align: center;
}

main > p::before{
  content: url(Img/pngwing\ 1.png);
  position: absolute;
  top: -20px;
  left: -20px;
  transform: translate(-50%, -50%);
}

main > p::after{
  content: url(Img/pngwing\ 2.png);
  position: absolute;
  bottom: -20px;
  right: -20px;
  transform: translate(50%, 50%);
}

main button{
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 50%);
  border: none;
  border-radius: 8px;
  color: white;
}

main button:hover,
main button:focus{
  background-color: rgb(64, 190, 231) !important;
  box-shadow: 1px 3px 5px 6px rgba(0, 0, 0, 0.25);
}
