html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  padding-left: 20%;
  padding-right: 20%;
  color: #4a4a4a;
  font-family: UniversLTPro-45Light, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
}
/* ToDo: Font klären https://eng.m.fontke.com/font/14675156/detail/ */

.grid-container {
  grid-template-columns: fit-content(100%) auto;
  display: grid;
  column-gap: 20px;
  row-gap: 10px;
}

.grid-heading {
  grid-column: 1 / span 2;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 120%;
  font-weight: 600;
  display: inline-block;
  background-color: #2393c5;
  -webkit-box-shadow: 0 25px 20px -20px rgba(0,0,0,.3);
  box-shadow: 0 25px 20px -20px rgba(0,0,0,.3);
  color: #fff;
  padding: 15px 30px;
}

button {
  font-size: 120%;
  color: #fff;
  background-color: #961734;
  border: none;
  padding: 18px 30px;
  margin-right: 20px;
  border-radius: 30px;
  transition: color .15s ease-in,background-color .15s ease-in,border .15s ease-in,border-radius .15s ease-in;
}

button:hover {
  border-radius: 0;
  cursor: pointer;
  background-color: #691024;
}

#preview {
  position: fixed;
  top: 100px;
  right: 5%;
  max-width: 15%;
  height: auto;
}
