body {
    margin: 0px;
    padding: 0px;
    display:grid;
    grid-template-columns: auto;
    grid-template-rows: [header] 40px [moduleHeader] 40px [content] auto [footer] 40px;
    grid-template-areas:
        "header"
        "moduleHeader"
        "content"
        "footer";
}
#header {
    grid-area: header;
}
#moduleHeader {
    grid-area: moduleHeader;
}
#content {
        grid-area: content;
}
#footer {
    grid-area: footer;
}

div {
    margin: 0px;
    padding: 0px;
}
input[type=text], input[type=url], input[type=email], input[type=number], input[type=tel] {
    -webkit-appearance: none; -moz-appearance: none;
    display: block;
    margin: 0;
    width: 100%; height: 40px;
    line-height: 40px; font-size: 17px;
    border: 1px solid #bbb;
}
input[type=checkbox] {
    width: 44px; height: 44px;
    -webkit-border-radius: 22px; -moz-border-radius: 22px; border-radius: 22px;
    border: 1px solid #bbb;
}
label {
    width: 100%; height: 40px;
    line-height: 40px; font-size: 30px;
}
#logo {
    width: 100%;
    height: auto;
}
#overskrift {
    margin-left: auto;
    margin-right: auto;
    margin-top: -30px;
    font-size: 55px;
}
.Btn {
    font-size: 65px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
    color: #dcfbb4;
    background-color: green;
    border: 0.1em solid #d4f7da;
    transition: all 0.3s;
    box-sizing: border-box;
    width: 100%;
    line-height: 3em;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0,0,0,0.1), inset 0 0 0 rgba(0,0,0,0.1);
    text-align: center;
}
.Btn:hover{
    box-shadow: 0 0 2em rgba(0,0,0,0.1), inset 0 0 1em rgba(0,0,0,0.1);
    background-color: #29a074;
}