@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
body {
    font-family: Roboto, sans-serif;
    margin: 0;
    height: 90vh;
    display: grid;
    align-items: start;
    justify-items: center;
    background-image: linear-gradient(to top, #c44c2c 0%, #cb8e7e 100%);
    padding: 10vh 0 0;
}
.card {
    background: #f6f6f6;
    border-radius: 4px;
    box-shadow: 0px 14px 80px rgb(34 35 58 / 50%);
    max-width: 500px;
    display: flex;
    flex-direction: row;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}
.card h2 {
  margin: 0;
  padding: 0 1rem;
}
.card .title {
    padding: 1rem;
    text-align: right;
    color: #c44c2d;
    font-weight: bold;
    font-size: 14px;
}
.card .desc {
  padding: 0.5rem 1rem;
  font-size: 12px;
}
.card .actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 0.5rem 1rem;
}
.card svg {
  width: 85px;
  height: 85px;
  margin: 0 auto;
}

.img-avatar {
    width: 120px;
    height: 120px;
    position: absolute;
    border-radius: 50%;
    border: 6px solid white;
    background-image: url(https://avatars.githubusercontent.com/u/65898893?v=4);
    background-size: cover;
    top: 30px;
    left: 100px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 3px 5px #0003;
}

.card-text {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.title-total {
    padding: 120px 1.5em 1.5em 1.5em;
    background-image: url(https://png.pngitem.com/pimgs/s/166-1668421_line-art-hd-png-download.png);
    background-position: 60px -20px;
    background-repeat: no-repeat;
}

path {
  fill: white;
}

.img-portada {
  width: 100%;
}

.portada {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: url("https://avatars.githubusercontent.com/u/65898893?v=4");
  background-position: bottom center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.blur {
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(5px); 
  height: 100vh;
	width: 100%;
    position: absolute;
}

button {
  border: none;
  background: none;
  font-size: 24px;
  color: #8bc34a;
  cursor: pointer;
  transition:.5s;
}

button:hover{
    color: #4CAF50  ;
    transform: rotate(22deg)
  }

  a{
    color: #c44c2d;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition:all 0.2s ease;
  }
  a:hover{
    color:#222;
  }
  @media(max-width:767px){
    .card {
        max-width: 90%;
    }
    .title-total {
        padding: 150px 0 1.5em 0;
    }
    .img-avatar {
        left: 47px;
    }
  }