body {
   margin: 0;
   padding: 0;
   font-family: sans-serif;
   height: 100vh;
   color: #2b2b2b;
}
.container {
    display: grid;
    max-width: 100vw;
    grid-template-rows: 1fr 70px;
    grid-template-columns: 1fr 1fr;
    background-color: grey;
}
.nbcont {
    /* grid-row: 2; */
    grid-column: 1 / span 2;
    /* font-size: 30px; */
    /* text-align: center; */
    /*position: fixed;*/
    /*bottom: 0;*/
    /*width: calc(100% - 8px);*/
    background: #f5f5f5;
    text-align: center;
    display: grid;
    justify-content: center;
    --l: 62.7px;
    grid-template-columns: 1fr var(--l) var(--l);
    align-items: center;
    text-align: center;
}
.resultats {
    grid-row: 1;
    font-size: 1.3em;
}

#eur, #dkk {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    grid-row: 1;
}

.prix {
    font-size: .8em;
    opacity: 0.5;
    margin-bottom: 13px;
}

#eur {
    background: #e6e6e6;
}
@supports (-webkit-touch-callout: none) {
    body {
      height: -webkit-fill-available;
    }
  }

.contentier {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
    height: 100svh;
    background: blue;
    width: 100vw;
    user-select: none;
}

#dkk {
    background: #dedede;
}

.clavier {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(4,1fr);
    background: #e6e6e6;
}

.clavier > div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0.5px solid;
}

#clear, .mi {
    border-left: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

* {
    user-select: none;
}

.mi {}