@font-face {
  font-family: 'HYXiXingKaiJ';
  src: url('HYXiXingKaiJ.ttf') format('truetype');
}
        body {
            font-family:'Xingkai SC' ,sans-serif;
            background-color: #f7e9e3;
            text-align: center;
            margin-top: 100px;
        }

        h1 {
            color: #ff5370;
            font-size: 56px;
        }

        p {
            color: #ff5370;
            font-size: 24px;
            margin-top: 30px;
        }

        a {
            color: #ff5370;
            font-size: 24px;
            margin-top: 30px;
            text-decoration: none;
        }

        a:hover {
            color: #ff5370;
            font-size: 30px;
            margin-top: 30px;
        }


        .heart {
            position: relative;
            width: 100px;
            height: 100px;
            background-color: #ff5370;
            margin: 0 auto;
            transform: rotate(45deg);
            animation: heartbeat 1s infinite;
        }

        .heart:before,
        .heart:after {
            position: absolute;
            content: "";
            left: 50px;
            top: 0;
            width: 50px;
            height: 80px;
            background-color: #ff5370;
        }

        .heart:before {
            border-radius: 50px 50px 0 0;
            transform: rotate(-45deg);
        }

        .heart:after {
            border-radius: 50px 50px 50px 0;
            transform: rotate(-45deg);
        }

        @keyframes heartbeat {
            0% {
                transform: scale(0.8);
            }
            50% {
                transform: scale(1);
            }
            100% {
                transform: scale(0.8);
            }
        }

        audio {
            display: none;
        }

        img {
            width: 200px;
            border-radius: 10%;
            transition: transform .2s;
        }

        img:hover {
            transform: scale(1.1);
        }