
@keyframes pop-up {
    80% {
        transform: scale(1.1);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#currencyBlock {
    background-image: var(--img-bg-orange);
    background-repeat: repeat;

    padding: 0 0 350px;
    position: relative;
}

#pageHeader {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 350px;
}

#imgTop {
    position: relative;
    transform: translateX(-50%);
    left: 50%;
    height: 250px;
}

#currencyArea {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;

    background-color: #f4e7c1;
    border-radius: 8px;
    border: 1px solid #727272;
    padding: 50px 0;

    color: #EF9740;
    position: relative;
}

.corner_topLeft {
    position: absolute;
    top: -23px;
    left: -23px;
    width: 120px;
}

.corner_topRight {
    position: absolute;
    top: -23px;
    right: -23px;
    transform: rotateY(180deg);
    width: 120px;
}

.corner_bottomLeft {
    position: absolute;
    bottom: -23px;
    left: -23px;
    transform: rotateX(180deg);
    width: 120px;
}

.corner_bottomRight {
    position: absolute;
    bottom: -23px;
    right: -23px;
    transform: rotate(180deg);
    width: 120px;
}

#titleWrapper {
    color: #EA6C33;
}

#titleWrapper > .title {
    font-size: 36px;
}

#currencyTypeWrapper {
    display: flex;
    justify-content: space-between;
}

.currency-wrapper {
    opacity: 0;
    transform: scale(0.1);
}

#currencyTypeWrapper > div {
    background-image: var(--img-ray);
    background-size: 100% auto;
    background-position: 50% top;

    width: 30%;
    text-align: center;
    color: #3981F5;
}

#currencyTypeWrapper p {
    margin-top: 0;
    font-size: 20px;
}

.text-content {
    width: 80%;
    margin: 0 auto;
}

.text-content > p {
    font-size: 17px;
    line-height: 34px;
    margin: 34px auto;
}

.currency-name {
    color: #3981F5;
    font-size: 30px;
}

.story-title {
    font-size: 30px;
    color: #3981F5;
    margin-top: 40px;
}

#imgGrass {
    background-image: var(--img-fence);
    background-repeat: repeat-x;
    background-size: auto 200px;

    width: 100%;
    height: 200px;

    position: absolute;
    bottom: 0;
}

#splitterWrapper {
    background-image: var(--img-red-grid);
    background-repeat: repeat-x;
    background-size: auto 128px;

    width: 100%;
    height: 128px;
}