@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap");

.profile-info {
  margin-bottom: 25px;
}

.profile-img {
  width: 80%;
  max-width: 300px;
}

/* .profile-img-section {
  position: relative;
} */

.profile-img-line {
  background-color: var(--secondary-color);
  height: 15px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.profile {
	text-align: left;
	margin-left: 30px;
}

.profile-title {
  font-size: 35px;
  font-weight: bold;
  margin: 0;
  color: var(--primary-color);
  font-family: "Noto Sans", sans-serif;
}

.profile-details {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  max-width: 450px;
  margin: 20px auto;
} 

.profile-btn {
	background-color: #c62626;
	color: var(--text-color-inverse);
	padding: 0.5em 1em;
	border-radius: 7px;
	cursor: pointer;
	position: fixed;
	bottom: 11px;
	right: 47px;
	width: 200px;
	border: 2px solid #f8f7f7;
	display: flex;
	justify-content: center;
	text-align: center;
	left: 41px;
} 

.profile-btn:hover {
  filter: brightness(130%);
}

@media (min-width: 768px) {
  .profile-info {
    margin-bottom: 0px;
  }

  .profile-img {
    width: 100%;
    max-width: 350px;
    transform: scaleX(-1);
  }

  .profile {
    text-align: left;
    margin-left: 30px;
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    /* margin: 0 auto; */
    /* align-items: center; */
  }

  .profile-title {
    font-size: 60px;
  }

  .profile-details {
    font-size: 25px;
    margin: 30px 0;
  }

  .profile-btn {
    font-size: 20px;
  }
}
