body {
    background-color: rgb(85%, 85%, 100%);
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h1, h2 {
    text-align: center;
}

.section {
    margin: auto auto 30px;
    position: relative;
    width: 500px;
}

.section > .img {
    background-color: #eeeeee;
    background-origin: content-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 75%;
    border: 5px black solid;
    border-radius: 50%;
    height: 100px;
    position: absolute;
    left: -115px;
    width: 100px;
    z-index: 15;
}

.img.cheetah {
    background-image: url(/Cheetah.svg);
}

.img.hare {
    background-image: url(/Hare.svg);
}

.img.turtle {
    background-image: url("/Determined Turtle.svg");
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
}

.section > .contents {
    background-color: #9C9CFF;
    border-radius: 50px;
    box-shadow: 0 2px 2px #00000055;
    corner-shape: squircle;
    padding: 30px;
    position: relative;
    z-index: 10;
}

.section > .base {
    background-color: #9C9CFFCC;
    border-radius: 50px;
    box-shadow: inset 0 0 1px #0000008c ;
    corner-shape: squircle;
    height: 100%;
    left: 0;
    position: absolute;
    top: 8px;
    width: 100%;
    z-index: 5;
}

label {
    display: block;
}

.send-error {
    font-style: italic;
    color: indianred;
}

.message-holder .presend {
    display: block;
}

.message-holder .postsend {
    display: none;
}

.message-holder.sent .presend {
    display: none;
}

.message-holder.sent .postsend {
    display: block;
}