* {
    padding: 0;
    margin: 0;
    font-family: "DM Sans";
}

@font-face {
    font-family: "DM Sans";
    src: url("https://fonts.webhypo.net/DM-Sans-Italic.woff2") format("woff2");
    font-display: auto;
    font-style: italic;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "DM Sans";
    src: url("https://fonts.webhypo.net/DM-Sans-Bold.woff2") format("woff2");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}

@font-face {
    font-family: "DM Sans";
    src: url("https://fonts.webhypo.net/DM-Sans-Regular.woff2") format("woff2");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

/* header-area */

header {
    height: 100px;
    padding: 40px 0;

    background-color: #004f96;

    display: flex;
    justify-content: center;
}

a#logo {
    display: flex;
}

/* main-area */

.content-wrapper {
    max-width: 60vw;
    padding: 40px 0;
    margin: 0 auto;

    background-color: white;

    font-size: 15pt;
    text-align: left;
}

.big-line-break {
    width: 100%;
    max-width: 100%;
    height: 30px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: 15pt;
    font-weight: bold;
    color: black;
    line-height: 1.4em;
    display: inline;
}

li {
    list-style-position: inside;
    list-style-image: url('../material/list_arrow.svg');
}

li::marker {
    font-size: 1.8em;
    line-height: 0.6em;
}

#pingu-main {
    height: 260px;
    min-height: 5vw;
    max-height: 60vw;
    margin: 60px auto 30px auto;

    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
    color: #004f96;
;
}

a:hover {
    text-decoration: none;
    color: #ed7120;
}


/* media queries for phone */
@media only screen and (orientation: portrait) {
    .header-wrapper {
        background-color: #004f96;
        height: 120px;
        margin: 0 auto;
        text-align: center;
        width: 94vw;
        max-height: 100px;
        padding: 20px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-wrapper {
        background-color: white;
        margin: 0 auto;
        padding: 20px 0;
        max-width: 94vw;

        font-size: 0.9em;
    }
}