* {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', sans-serif;
}



body {
  height: 100vh;
  width: 100vw;
  background: linear-gradient(rgb(125, 231, 230), rgb(25, 92, 131));
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: cadetblue;
}

p {
  padding: 1px;
}

.profile {
  height: 40%;
  width: 50%;
  background-color: aliceblue;
  border-radius: 10px;

  display: flex;
  align-items: center;
  /* justify-content: center; */
  position: relative;
}

.profile-left-div {
  width: 40%;
  height: 100%;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-img {
  width: 90%;
}

.profile-right-div {
  width: 60%;
  padding: 40px;
  
  display: flex;
  flex-direction: column;
  gap: 5%;

}

.back {
  text-decoration: none;
  background-color: rgb(91, 255, 255);
  color: black;
  padding: 2px 5px;
  border: 2px solid rgb(42, 42, 42);
  border-right: 4px solid black;
  border-top: 4px solid black;
  border-radius: 5px;
  font-family: 'Comfortaa', cursive;
  position: absolute;
  top: 0%;
  right: 0%;
}

.back:hover {
  border-right: 5px solid black;
  border-top: 5px solid black;
  transition: 100ms;
}

.back:active {
  border-right: 2px solid rgb(116, 115, 115);
  border-top: 2px solid rgb(116, 115, 115);
  border-left: 2px solid black;
  border-bottom: 2px solid black;
}