.main-content > img {
    display: block;
    margin: 0 auto;
    width: 50vw;
}

.main-content > p {
    margin: 20px 0;
    
}


.scroll-watcher {
    position: fixed;
    width: 100%;
    height: 10px;
    top: 0;
    z-index: 99999;

    background-color: #cc0e00;
    scale: 0 1;
    animation: scroll-watcher linear;
    animation-timeline: scroll();
}

@keyframes scroll-watcher {
    to {
        scale: 1 1;
    }
}