.h1 {
    font-size: xx-large;
}

@font-face {
    font-family: '_vollkorn';
    src: url(app/public/static/_vollkorn.woff2);
}

.japan {
    grid-area: japan;
    color: white;
    border-right: 0.75px solid white;
    font-size: 14px; /* Specify units for font size */
    font-weight: lighter;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl; /* Ensure vertical text layout */
    height: 100%; /* Ensure it takes the full height of the grid area */
}

.koho, .Sylvia {
    text-align: center;
    font-family: '_vollkorn';
}

.koho {
    grid-area: koho;
    color: white;
    border-bottom: 0.75px solid white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Sylvia {
    grid-area: Sylvia;
    color: #0A74DA;
    font-size: 14px;
    font-weight: 550;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overbox1 {
    display: flex;
    height: 80px;
    width: 200px;
    border: 2.75px solid white;
    z-index: 1;
}

.overbox2 {
    display: flex;
    height: 85px;
    width: 205px;
    border: 6px solid #47a7bf;
    z-index: 2;
    transform: scale(120%);
}

.box {
    height: 80px;
    width: 200px;
    background: #47a7bf;
    box-shadow:  
        0 0 0 0.75px white,
        0 0 0 2px #47a7bf,
        0 0 0px 1px rgb(252, 252, 252,1);
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: 2fr 1fr;
    grid-template-areas:
        "japan koho"
        "japan Sylvia";
    z-index: -1;
    align-items: center;
    justify-items: center; /* Center items horizontally within their grid area */
}
