.homepage-main {
    background-color: yellow;
    height: calc(100%);
    width: 100%;
}

.homepage-main-left-container {
    display: inline-block;
    width: 40px;
    height: 100%;
    vertical-align: top;
    background-color: #fff;
}

.homepage-main-middle-container {
    display: inline-block;
    width: calc(100% - 80px);
    height: 100%;
    vertical-align: top;
    /* background-image: radial-gradient(ellipse farthest-corner at 50% 50%, rgb(0, 100, 172) 0%, #46f9b8 90%); */
    /* background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%); */
    background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
    transition: .3s;
    background-size: 300% 200%;
    animation-name: animated-background;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-delay: 0;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
}

.homepage-main-right-container {
    display: inline-block;
    width: 40px;
    height: 100%;
    vertical-align: top;
    background-color: #fff;
}

.homepage-main-middle-container-top {
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.homepage-main-middle-container-top-content {
    display: flex;
    align-items: flex-end;
}

.homepage-main-middle-container-top-title {
    font-family: "Work Sans";
    letter-spacing: 5px;
    margin-left: 10px;
    font-size: 20px;
}

.homepage-main-middle-container-middle {
    height: calc(100% - 80px - 40px);
    overflow: hidden;
    position: relative;
}

.homepage-main-middle-container-bottom {
    height: 40px;
    background-color: #fff;
}

@keyframes animated-background {
    0% {
        background-position: 0% 60%;
    }
    25% {
        background-position: 60% 0%;
    }
    50% {
        background-position: 100% 60%;
    }
    75% {
        background-position: 60% 100%;
    }
    100% {
        background-position: 0% 60%;
    }
}