html {
  background: url("/static/wedding/Saal2.jpg") no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
    text-align: center;
    padding: 30px calc(0.5 * (100% - min(90%, 1000px)));
    font-family: comic sans ms, cursive;
    color: #9925be;
    font-size: 24px;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.navigation-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
    background-color: #9925be;
}

.navigation-bar li {
  float: left;
}

.navigation-bar li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.navigation-bar li a:hover {
    background-color: #441267;
}

.buffet-container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  flex-direction: row;
  font-size: 20px;
}

.buffet-div {
  margin: 10px 20px;
  min-width: 100px;
  display: flex;
}

.buffet-div input {
  width: 40px;
  height: 1.5em;
  margin-left: 10px;
}

.errorlist {
  color: red;
  font-size: 16px;
  list-style-type: none;
}

@media (min-width: 55em) {
    .column {
        display: inline-block;
        width: 49%;
    }
}