@font-face {
  font-family: EdwardianScript;
  src: url("Fonts/Edwardian_Script_ITC.TTF");
}

body {
  margin: 0;
  font-family: Calibri, sans-serif;
  font-size: 20px; 
}

* {
  box-sizing: border-box;
}

.topnav {
  position: fixed;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  background-color: white;
  border-bottom: 1px solid #ededed;
  padding: 0px 15%;
  transition: top 0.3s;
}

.topnav a {
  color: black;
  text-align: center;
  font-size: 18px; 
  float: left;
  margin: 0px 20px;
  padding: 20px 0px;
  text-decoration: none;
  line-height: 25px;
  border-top: 1px solid #ededed;
}

.topnav a.logo {
  font-size: 25px;
  font-family: EdwardianScript;
  font-weight: bold;
}

.topnav a:hover:not(:first-child) {
  border-bottom: 1px solid black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 920px) {
  .topnav a:not(:first-child) {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav a.icon:hover {
    border: none;
  }
}

@media screen and (max-width: 920px) {
  .topnav{
    padding: 0%;
  }
  .topnav.responsive {
    position: fixed;
  }
  .topnav.responsive .icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

#abstandsHalter {
  height: 67px;
}

#landingBox {
  padding: 14px 0px 10px 0px;
}

#kontaktÜberschrift {
  text-align: center;
}

.listbox {
  text-align: center;
}

.listbox a {
  color: white;
  font-size: 18px;
  font-family: Calibri;
  text-decoration: none;
  background-color: black;
  padding: 16px 24px;
  border: none;
  transition: 0.3s;
  display: inline-block;
}

.listbox a:hover {
  color: black;
  background-color: #ededed;
}

.smartbox {
  padding: 48px 15%;
  border-top: 1px solid #ededed;
}

.textbox {
  padding: 12px 15%;
  border-top: 1px solid #ededed;
  text-align: center;
}

#aboutText {
  padding: 0px 48px;
  text-align: center;
}

.column {
  position: relative;
  float: left;
  width: 50%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.offerColumn {
  position: relative;
  float: left;
  width: 50%;
  padding: 0px 18px;
}

.priceRow:after {
  content: "";
  display: table;
  clear: both;
}

.priceRow .productColumn {
  position: relative;
  float: left;
  width: 80%;
  padding: 0px 0px 8px 0px;
}

.priceRow .priceColumn {
  position: relative;
  float: left;
  width: 20%;
  text-align: right;
  padding: 0px 0px 8px 0px;
}

@media screen and (max-width: 920px) {
  .listbox a {
    float: none;
    display: block;
    text-align: center;
    border: 1px solid white;
  }
  .smartbox {
    padding: 12px 24px;
  }
  .textbox {
    padding: 12px 24px;
  }
  #aboutText {
    padding: 0%;
  }
  .column {
    width: 100%;
  }
  .offerColumn {
    width: 100%;
    padding: 0px;
  }
}

footer {
  text-align: center;
  font-size: 16px;
  padding: 20px;
  background-color: black;
}

footer ul {
  padding: 16px 0px;
}

footer a {
  text-decoration: none;
  color: white;
  padding: 16px 8px;
}