* {
    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: 44vw;
    padding: 40px 0;
    margin: 0 auto;

    background-color: white;

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

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

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

#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;
}




/* footer-area */

footer {
    height: 300px;

    background-color: #004f96;

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

.footer-wrapper {
    max-width: 44vw;
    padding: 30px 0;
    margin: 0 auto;

    font-size: 15pt;
    text-align: center;
    color: white;
}

.small-line-break {
    width: 100%;
    max-width: 100%;
    height: 8px;
}

a {
    text-decoration: none;
    color: white;
}

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





/* media queries for phone */

@media (max-width: 600px) {
    .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: 15pt;
    }

    .footer-wrapper {
        margin: 0 auto;
        padding: 30px 0;
        max-width: 94vw;

        font-size: 15pt;
        text-align: center;
        color: white;
    }

    #pingu-main {
        max-width: 40vw;
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 60px auto 30px auto;
    }
}