body {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #e84f5b;
    justify-content: space-between;
    height: 100vh;
}
main {
    background-color: #e84f5b;
    padding: 1px 12px;
    text-align: center;
    padding-top: 32px;
}
.hero-img {
    max-width: 268px;
    width: 100%;
}
img + p {
    color: #fff;
    font-size: 20px;
    padding: 8px 8px;
    font-weight: bold;
}
main a {
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    display: block;
    color: #a10000;
    font-size: 24px;
    margin-bottom: 20px;
    padding: 12px;
}
section {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
}
p.special {
    color: red;
    font-weight: bold;
}
section + p,
p + p {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 5px;
}
.section-image {
    background-color: #fff;
    width: 100%;
    margin: 0 auto 20px;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}
main hr {
    margin: 20px 0;
    border: none;
    border-top: 2px solid white;
}
main ul {
    margin: auto;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: disc;
}
main li {
    margin-left: 30px;
    width: auto;
    text-align: left;
}
section p {
    margin: auto;
    max-width: 300px;
}
hr + p {
    color: white;
    padding-bottom: 20px;
}
.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blink-dance {
    display: block;
    text-align: center;
    font-size: 24px;
    color: #e84f5b;
    padding: 8px 0;
    transform-origin: center;
    animation: dance 0.8s ease-in-out infinite alternate;
    /* tweak visual weight */
    font-size: 2rem;
    line-height: 1.1;
}

@keyframes dance {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(-2deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
    75% {
        transform: translateY(-4px) rotate(-1deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .blink-dance {
        animation: none;
    }
}

@media (min-width: 600px) {
    section,
    .buttons,
    .section-image,
    section + p,
    p + p {
        min-width: 576px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .buttons {
        min-width: 576px;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .buttons a {
        width: calc((100% - 12px) / 2);
    }
}
@media (min-width: 700px) {
    br {
        display: none;
    }
}
