
footer{
  position: relative;
  width: 100%;
  height: 300px;
  background:rgb(15, 15, 15) ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer p:nth-child(1){
font-size: 30px;
margin-bottom: 20px;
font-weight: bold;
background-image: linear-gradient(to top, rgb(255, 200, 200) 0%,
  #ff84ab 20%, #ff5b8f 50%,
  #ff2067 70%, #f9004d 100%);
  -Webkit-background-clip: text;
  -moz-background-clip:text ;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  background-size: 100%;
}
footer p:nth-child(2){
  color: white;
  font-size: 17px;
  width: 500px;
  text-align: center;
  line-height: 26px;
}
footer p:nth-child(2) a{
  color: #f9004d;
  font-size: 18px;
}
.social{
  display: flex;
}
.social a{
  width: 45px;
  display: flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: #f9004d;
  border-radius: 50%;
  margin: 22px 20px;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.social a:hover{
  transform: scale(1.095);
  transition: all 0.25s ease-in-out;
}
.end{
  color: #f9004d;
  bottom: 35px;
  font-size: 14px;
}
.end-container{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  height: 60px;
  border-top: dotted 1px rgb(245, 245, 245);
}