@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #081b29;
  --main-color: #00abf0;
  --text-color: #333;
  --second-text-color: #555;
  --white-color: #fff;
  --cover-color: linear-gradient(45deg, #00abf0, #006e9a);
  --pages-color: linear-gradient(90deg, #fff, #ddd);
  --border: 0.125rem solid #00abf0;
  --box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--bg-color);
}
.wrapper {
  position: relative;
  width: 66rem;
  height: 42rem;
  background: var(--cover-color);
}
.cover {
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--cover-color);
  box-shadow: var(--box-shadow);
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  transform-origin: right;
}
.cover.cover-left {
  z-index: -1;
}
.cover.cover-right.turn {
  transform: rotateY("180deg");
}
.book {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.book.book-page.page-left {
  position: absolute;
  width: 50%;
  height: 50%;
  background: var(--pages-color);
  box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.1);
  display: flex;
}
.profile-page {
  margin-top: 32px;
  margin-left: 20px;
  background:white;
  width: 46%;
  height: 90%;
  border-radius: 10%;
}
.profile-page img {
  margin-left: 145px;
  padding: 15px;
  border: 2px;
  border-radius: 10%;
}
.profile-page h1 {
  font-size: 2.7rem;
  line-height: 1;
  padding-left: 50px;
}
.profile-page h3 {
  font-size: 1.7rem;
  color: var(--main-color);
  padding-left: 130px;
}
.profile-page .social-media {
  padding-left: 130px;
  background: transparent;
  font-size: 40px;
}
.profile-page .social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: var(--border);
}
.profile-page .social-media a:hover {
  background: var(--main-color);
  color: var(--white-color);
}
.profile-page p {
  text-align: justify;
}
.btn-box {
  padding-top: 10px;
  padding-left: 105px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 9rem;
  height: 3rem;
  background-color: var(--main-color);
  border: var(--border);
  border-radius: 0.2rem;
  font-size: 1rem;
  color: var(--white-color);
  font-weight: 500;
  transition: 0.5s;
}
.btn:hover{
  background: transparent;
  color: var(--main-color);
}
.btn-box .btn:nth-child(2){
  background: transparent;
  color: var(--main-color);
}
.btn-box .btn:nth-child(2):hover{
  background: var(--main-color);
  color: var(--white-color);
}