.blur {
    position: relative;
    height: 630px;
    overflow: hidden;
    transition: 2s;
}

#morePosBlur {
    height: 100px;
    width: 110%;
    position: absolute;
    bottom: -50px;
    left: -50px;
    background-color: #128abe;
    filter: blur(25px);
    z-index: auto;
    opacity: 1;
    transition: 1s;
}

#morePos {
    text-align: center;
}

#morePosButton {
    height: 40px;
    width: 40px;
    color: white;
    background-color: #c92127;
    border-radius: 50%;
    text-align: center;
    border: none;
    line-height: 0;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

#morePosButton:hover {
    background-color: #FECE1A;
}

#moreArrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: 1s;
}

.downArrow {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.upArrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}