*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}
body{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #13010b;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}
.heart{
    width: 70px;
    height: 70px;
    background: #F90B57;
    position: relative;
    box-shadow: 0 0 20px #ff155f,
                0 0 60px #ff155f;
    transform: rotate(-45deg);
    animation: heart 1s linear infinite 0.2s alternate;
}
@keyframes heart {
    0%{
        transform: rotate(-45deg) scale(1);
    }
    90%{
        transform: rotate(-45deg) scale(1.6);
    }
    100%{
        transform: rotate(-45deg) scale(1.4);
    }
}
.heart::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F90B57;
    border-radius: 50%;
    left: 0;
    top: -50%;
}
.heart::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #F90B57;
    border-radius: 50%;
    top: 0;
    right: -50%;
}


.copyright {
    position:absolute;
    bottom: 0;
    padding-bottom: 50px;
    color:#b8b8b8;
    
}
 
  p {
    line-height: 1.4;
  }
  
    a {
    outline: none;
    text-decoration: none;
    padding: 2px 1px 0;
  }
  
  a:link {
    color:#F90B57;
    ;
  }
  
  a:visited {
    color: #F90B57;
  }
  
  a:focus {
    border-bottom: 1px solid;
  }
  
  a:hover {
    border-bottom: 1px solid;

  }
  
  a:active {
    color: #ffffff;
  }