#blog-container #header-container {
    position: relative;
    height: 360px;
    overflow: hidden;
}

#blog-container #header-container #header {
    display: flex;
    position: absolute;
    top: var(--top-full-height);
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    height: calc(100% - var(--top-full-height));
    align-items: center;
}

#header-container #header .img {
    position: relative;
    width: 500px;
    height: 200px;
    animation: moveIn cubic-bezier(0, 0, 0, 1) 1s;
}

#header-container #header .img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: moveSlow 5s;
    animation-iteration-count: infinite;
}

#header-container #header .desc {
    text-shadow: var(--gameplay-object-shadow);
}

#header-container #header .desc .title {
    font-size: 36px;
    font-weight: bolder;
}


#blog-container #blog-txt {
    margin: auto;
    width: 80%;
}
