.container{
  display: flex;
}

p{
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
}

.blockViolet{
  background: linear-gradient(125deg, hsl(293, 100%, 63%),hsl(264, 100%, 61%));
  width: 30%;
  height: 90vh;
  border-bottom-right-radius: 70%;
  border-bottom-left-radius: 20%;
  position: relative;
  z-index: -1;
}

.conversation{
  width: 25%;
  height: auto;
  border-radius: 40px;
  background: hsl(270, 20%, 96%);
  box-shadow: 0px 0px 20px rgb(255,255,255) inset;
  position: absolute;
  top: 20%;
  left: 23%;
  z-index: 100;
}

.top{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: linear-gradient(125deg, hsl(293, 100%, 63%),hsl(264, 100%, 61%));
  border-bottom: 2px solid hsl(270, 20%, 96%);
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.name{
  color: white;
  line-height: 0.5em;
}

.name p{
  color: rgba(255,255,255,0.5);
}

.img-radius{
  width: 40px;
  border-radius: 50%;
  box-shadow: 4px 4px 5px rgb(255,255,255);
  justify-content: center;
  align-items: center;
  padding-left: 5px;
}

.dog-image{
  width: 50px;
  border-radius: 20%;
  padding: 5px;
}

.message-right{
  width: 50%;
  margin-right: auto;
  background: #CCC;
  color: hsl(276, 55%, 52%);
  border-radius: 10px;
  margin-left: 5px;
  padding: 2px;
}

.message-left{
  width: 50%;
  margin-left: auto;
  background: white;
  color: black;
  border-radius: 10px;
  margin-right: 5px;
  padding: 2px;
}

.gradient-color{
  background: linear-gradient(125deg, hsl(293, 100%, 63%),hsl(264, 100%, 61%));
  color: white;
}

.type-message{
  border-radius: 10px;
  border: 2px solid white;
  margin-left: 7px;
  margin-bottom: 10px;
}

.send:hover{
  transform: scale(1.5);
  color: rgb(242, 193, 29);
  margin-left: 5px;
}

.message{
  width: 35%;
  margin: auto;
  position: relative;
  left: 15%;
  margin-left: 15%;
}

.message h1{
  font-size: 2em;
  font-family: 'Rubik', sans-serif;
}

.message p{
  color: rgba(0,0,0,0.5);
}

@media screen and (max-width : 720px) {
  .container{
    display: block;
    background: hsla(270, 20%, 96%,0.2);
  }

  .blockViolet{
    background: linear-gradient(125deg, hsl(293, 100%, 63%),hsl(264, 100%, 61%));
    width: 45%;
    height: 80vh;
    border-bottom-right-radius: 100%;
    border-bottom-left-radius: 0%;
    position: relative;
    z-index: -1;
  }

  .conversation{
    width: 85%;
    height: auto;
    border-radius: 40px;
    background: hsl(270, 20%, 96%);
    box-shadow: 0px 0px 20px rgb(255,255,255) inset;
    position: absolute;
    top: 5%;
    left: 15%;
    z-index: 100;
  }

  .message{
    width: auto;
    margin: auto;
    position: absolute;
    left: 0%;
    top: 100%;
    z-index: auto;
    margin: 1em;
  }

  .message-right{
    width: 75%;
  }

  .message-left{
    width: 75%;
  }

  .dog-image{
    width: 40px;
    border-radius: 20%;
    padding: 5px;
  }

  .type-message{
    border-radius: 10px;
    border: 2px solid white;
    margin-left: 7px;
    margin-bottom: 10px;
    width: 75%;
  }

  p{
    font-size: 12px;
  }

  .message h1{
    font-size: 1em;
  }

}
