body{
    font-family: 'Barlow', serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}
h1 {
    text-align: center;
    font-size: 2.8em;
    display: inline;
    margin: 0;
    padding: 0;
    margin: 1em auto 1em 0.2em;
    color: #548b78;
    border-bottom: 2px solid #548b78;
}
h2 {
    text-align: center;
    margin: 1.4em 1em 2em;
}
#logo {
    width: 200px;
    margin: 1em 0 1em auto;
}
#overskriftsdiv {
    display: grid;
    grid-template-columns: 2fr 3fr;
}
#bestillingsDiv {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex: 1 1;
}
.orderCard {
    width: 2.4em;
    height: 1.5em;
    min-height: 1.2em;
    border-radius: 5px;
    margin: 0.2em 0.3em;
    text-align: center;
    box-sizing: border-box;
    background-color: #66b1ff;
    color: white;
    cursor: pointer;
    box-shadow: 0px 4px 0px 0px #1588ff;
    display: flex;
    font-size: 2.5em;
    transition: background-color 200ms;
    border: none;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}
.orderNo {
    font-size: 0.6em;
}
.orderName {
    font-size: 0.3em;
    word-break: break-word;
}
#sistOppdatert {
    margin: 3em 3em 1em;
    text-align: center;
    font-size: 1.8em;
}
#creds {
    margin: 1em 3em;
    text-align: center;
    font-size: 0.8em;
}
#creds a {
    text-decoration-color: gray;
    color: gray;
}
@media only screen and (max-width: 750px){
    #bestillingsDiv {
        width: 90%;
    }
}
@media only screen and (max-width: 500px){
    #overskriftsdiv {
        display: block;
    }
    #overskriftsdiv::after {
        content: "";
        border-bottom: 3px solid #548b78;
        display: block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 8em;
        height: 0.3em;
    }
    #logo {
        margin: 1em auto 0em;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    h1 {
        margin-top: 1em;
        font-size: 2.4em;
        position: relative;
        margin: 0;
        display: block;
        border: none;
    }
    h2 {
        font-size: 1.3em;
    }
    #sistOppdatert {
        font-size: 1.3em;
    }
    #bestillingsDiv {
        width: 100%;
    }
}