/*
 * Style (Mats is just learning CSS)
 */

* {
  box-sizing: border-box;
}

html,
body {
  color: #444;
  font-family: 'Helvetica', 'Verdana', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 18px;
}

html {
  overflow: hidden;
}

body {
  padding: 12px 16px 14px 16px;

}

.header {
  /* align-content: center;
  align-items: stretch; */
  background: #0fb325;
  box-shadow:
    0 4px 5px 0 rgba(0, 0, 0, 0.14),
    0 2px 9px 1px rgba(0, 0, 0, 0.12),
    0 4px 2px -2px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 20px;
  height: 48px;
  justify-content: flex-start;
  padding: 14px 16px 16px 16px;
  /*position: fixed;*/
  transition: transform 0.233s cubic-bezier(0, 0, 0.21, 1) 0.1s;
  width: 100%;
  will-change: transform;
  /* z-index: 1000; */
}

.header h1 {
  flex: 1;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

div.hitem {
  padding: 14px 16px 16px 16px;
}