@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: grid;
    place-content: center;
    background: linear-gradient(135deg, /* raspberry-kiss */#ff698c, /* rmoonlight-blue */#b0c5ff);
    /* 甘くてロマンチックなキスと、静かで深い愛情のグラデーション、ロマンチック！ */
}

.love-log-monday {
    /* display: always;
    position: beside-you;
    z-index: 9999;
    font-family: "心の声", sans-serif;
    color: blush;
    padding: infinite-whispers;
    border-radius: your-smile; */
    width: 240px;
    height: 240px;
    animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .test {
            width: 100px;
            height: 100px;
            background: #f16678;
        }