html {
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

#main-logo {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    width: 13px;
    height: 13px;
}

@keyframes logo-bounce {
    10% {
        transform: scaleY(0.3);
    }

    30% {
        transform: scaleY(1);
    }

    60% {
        transform: scaleY(0.5);
    }

    80% {
        transform: scaleY(0.75);
    }

    100% {
        transform: scaleY(0.6);
    }
}

#main-logo > span {
    width: 3px;
    height: 100%;
    background-color: var(--pico-primary);
    border-radius: 3px;
    transform-origin: bottom;
    animation: logo-bounce 2.2s ease infinite alternate;
    content: "";
}

#main-logo > span:nth-of-type(2) {
    animation-delay: -2.2s;
}

#main-logo > span:nth-of-type(3) {
    animation-delay: -3.7s;
}

.example-img {
    padding: 10px;
}
.example-img > img {
    border-radius: 5px;
}
