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

    padding-bottom: 200px;
    position: relative;
}

#pageHeader {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
}

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

#currencyArea {
    width: 85%;
    max-width: 1000px;
    margin: 50px auto;

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

    color: #EF9740;
    position: relative;
}

.corner_topLeft {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 75px;
}

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

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

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

#titleWrapper {
    color: #EA6C33;
}

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

#currencyTypeWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#currencyTypeWrapper > div {
    background-image: var(--img-ray);
    background-size: 250px 250px;
    background-position: 50% top;
    background-repeat: no-repeat;

    text-align: center;
    color: #3981F5;
}

#currencyTypeWrapper img {
    position: relative;
    top: 15px;
}

#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-type {
    position: relative;
    top: 15px;
}

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

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

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

    width: 100%;
    height: 150px;

    position: absolute;
    bottom: 0;
}

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

    width: 100%;
    height: 128px;
}