@font-face {
    font-family: ibm;
    src: url(src/ibmplexsans-regular.ttf);
}

@font-face {
    font-family: handjet2;
    src: url(src/handjet-medium.ttf);
}

* {
    margin: 0;
    padding: 0;
}

#wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#content {
    /*background-color: yellow;*/
    min-width: 400px;
    max-width: 50vh;
}

#pic {
    /*background-color: pink;*/
    padding: 0em 0em 1em 0em;
}

img {
    width: 100%;
    height: 100%;
    max-height: 30vh;
    object-fit: contain;
}

.desktopimg {
    display: block;
}

.mobileimg {
    display: none;
}


.handjet-h1 {

    font-family: "Handjet", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 2.5em;
    font-style: normal;
    margin-bottom: 0.05em;
    /*background-color: blue;*/
    font-variation-settings:
        "ELGR" 1,
        "ELSH" 2;
}

.handjet-h2 {
    font-family: "Handjet", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1.5em;
    font-style: normal;
    font-variation-settings:
        "ELGR" 1,
        "ELSH" 2;
}


p {
    font-family: "IBM Plex Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 0.85em;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.input {
    text-indent: 1em each-line;
}

.tophr {
    margin: 0.5em 0em 1.5em 0em;
}

.bottomhr {
    margin: 1.5em 0em 0.5em 0em;
}

.decor {
    font-size: 0.7em;
}

@media only screen and (max-width: 500px) {
    #content {
        /*padding: 5% 0 0 5%;*/
        min-width: 350px;
        max-width: 70vw;
    }

    .desktopimg {
        display: none;
    }

    .mobileimg {
        display: block;
    }

    img {
        max-height: 50vh;
    }
}