@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

@keyframes hue {
    from {
        filter: hue-rotate(0deg) drop-shadow(4px 4px 8px rgba(0,0,0,0.25));
    }
    to {
        filter: hue-rotate(360deg) drop-shadow(4px 4px 8px rgba(0,0,0,0.25));
    }
}

@keyframes rotate {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }
    to {
        transform: rotate3d(1, 1, 1, 360deg);
    }
}

@keyframes glooble {
    0%, 100% {
        transform: scale(85%, 115%);
    }

    50% {
        transform: scale(115%, 85%);
    }
}

.glooble {
    animation: glooble 2s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.hue {
    color: red;
    animation: hue 4s infinite linear;
}

.rotate {
    animation: rotate 3s infinite linear;
}

* {
    font-family: "Comic Neue", cursive;
    font-weight: 700;
    font-style: normal;
}

main {
    max-width: 850px;
    margin: auto;
    padding: 8px;

    border-radius: 25px;
    background-color: rgba(255,255,255,0.5);
    box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
}

.mem {
    border-radius: 25px;
    background-color: rgba(255,255,255,0.5);
    box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
    padding: 8px;

    width: 100%;
    max-width: 180px;
    margin: 2px;

    display: inline-block;

    vertical-align: middle;
}

.mem p {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
    max-width: 88px;
}

.mid {
    text-align: center;
}

.italic {
    font-style: italic;
}

.title {
    display: inline-block;
    color: red;
    animation: hue 4s infinite linear, rotate 3s infinite linear;
}

html {
    background-color: aliceblue;
    background-image: url("/background.png");

    background-position: center;
    background-attachment: fixed;

    overflow-x: hidden;
}

#car {
    width: 150px;
    max-width: 25%;
    rotate: -5deg;
}

hr{
    background: #ff0000;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#ff0000), color-stop(25%,#ffff00), color-stop(50%,#00ff00), color-stop(75%,#00ffff), color-stop(100%,#0000ff));
    background: -webkit-linear-gradient(-45deg, #ff0000 0%,#ffff00 25%,#00ff00 50%,#00ffff 75%,#0000ff 100%);
    background: -moz-linear-gradient(-45deg, #ff0000 0%, #ffff00 25%, #00ff00 50%, #00ffff 75%, #0000ff 100%);
    background: -o-linear-gradient(-45deg, #ff0000 0%,#ffff00 25%,#00ff00 50%,#00ffff 75%,#0000ff 100%);
    background: -ms-linear-gradient(-45deg, #ff0000 0%,#ffff00 25%,#00ff00 50%,#00ffff 75%,#0000ff 100%);
    background: linear-gradient(-45deg, #ff0000 0%,#ffff00 25%,#00ff00 50%,#00ffff 75%,#0000ff 100%);

    animation: hue 2s infinite linear;

    height: 4px;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.25);
}

ol {
    text-align: left;
}

.important {
    display: none;
}

textarea, input {
    width: calc(100% - 16px);
    margin:none;
    padding:none;
    resize: none;
}

textarea {
    height: 4lh;
}

@media only screen and (max-width: 440px) {
    .mem {
        max-width: calc(100% - 20px);
        width: 100%;
        margin: auto;
        margin-bottom: 8px;
    }

    .mem p {
        max-width: 100%;
    }
}

.tl {
    border-top-left-radius: 15px;
}

.br {
    border-bottom-right-radius: 15px;
}