.homepage-img {
    width: 100vw;           /* full viewport width */
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -67px;
    overflow-x: hidden;
    position: relative;
}

.homepage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* Fade out at bottom */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
}

body{
    overflow-x: hidden;
}

@font-face {
    font-family: 'AR Gansinkaisho';
    src: url('../fonts/ARGansinkaishoJP-HV.ttf') format('truetype'); /* relative path from CSS file */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.vertical-text {
    font-family: 'AR Gansinkaisho', sans-serif;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 50px;
    line-height: 1.5em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px black;
    text-stroke: 1px black;

    position: absolute;     /* overlay on image */
    top: 500px;              /* distance from top of image */
    right: 900px;            /* distance from right side */
    z-index: 5;             /* above the image */
}

/* =======================
   1080p
   ======================= */

/* CSS for screens 1920px wide or smaller */
@media (max-width: 1920px) {
    .vertical-text{
        top: 400px;
        right: 650px
    }
}


   /* =======================
   1080p
   ======================= */