* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffe5e5;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
    max-width: 500px;
    margin: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container img {
    display: flex;
    max-width: 250px;
}

.container .btn {
    display: flex;
    gap: 25px;
}

.btn a {
    text-decoration: none;
    color: #111;
    background-color: #ff8fa3;
    padding: 10px 25px;
    border-radius: 8px;
    box-shadow: 0.5rem 1rem 3rem hsl(0, 0, 0, 0.3);
}

.heart {
    position: absolute;
    width: 40px;
    height: 40px;
    background: red;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: float 8s linear infinite;
    opacity: 0.7;
    z-index: 0;
}
.heart:before,
.heart:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: red;
    border-radius: 50%;
}
.heart:before {
    top: -20px;
    left: 0;
}
.heart:after {
    left: 20px;
    top: 0;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(1) rotate(-45deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) scale(1.2) rotate(-45deg);
        opacity: 0.2;
    }
}