html {
  background: #ccc;
  color: #333;
  background-image: url(texture.png);
  line-height: 1.5;
}

body {
  width: 600px;
  margin-left: 250px;
  font-family: Georgia;
}

nav {
  justify-content: space-around;
  margin-top: 50px;
  margin-bottom: 50px;
  position: fixed;
  top: 200px;
  left: 50px;
  list-style-type: none;
}

li {
  line-height: 50px;
}

li > a {
  background-color: #db6252;
  background-image: url(texture.png);
  color: #231f20;
  padding: 10px;
  border: 2px solid #231f20;
  border-radius: 300px;
}

#logo {
  width: 200px;
  position: fixed;
  left: 25px;
}

h1,
h2,
h3,
select,
li {
  font-family: "Dosis", sans-serif;
  text-transform: uppercase;
  clear: left;
}

p > img {
  margin-top: 15px;
  box-sizing: border-box;
  border: 2px solid #231f20;
}

img {
  width: 100%;
  object-fit: cover;
}

.store-sample {
  width: auto;
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #231f20;
}

img[data-src] {
  background-image: url(logo-transparent.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #231f20;
}

img[data-src]:not([src]) {
  opacity: .3;
}

dl {
  display: flex;
  flex-flow: row wrap;
  border: solid #231f20;
  border-width: 2px 2px 0 0;
  background: #231f20;
  background-image: url(texture.png);
  font-size: .8rem;
}

dt {
  flex-basis: 40%;
  padding: 5px;
  background: #231f20;
  text-align: right;
  color: #ccc;
  align-self: center;
}

dd {
  flex-basis: 50%;
  flex-grow: 1;
  margin: 0;
  padding: 5px;
  border-bottom: 2px solid #231f20;
  background: rgba(255,255,255,.9);
  background-image: url(texture.png);
}

a {
  color: #db6252;
}

.special {
  color: #db6252;
  font-weight: bold;
}

.photos-container {
  line-height: 0;
  column-count: 2;
  column-gap: 10px;
}

.photos-container > img {
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 2px solid #231f20;
}

form {
  text-align: center;
}

input[type="image"] {
  display: block;
  margin: 1rem auto;
}

hr {
  border: 2px solid #231f20;
  border-radius: 100px;
}

@media (max-width: 800px) {
  #logo {
    position: static;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  body {
    width: auto;
    margin-left: auto;
    padding: 0 15px;
  }
  h1 {
    margin-top: 0;
  }
  h2 {
    text-align: center;
  }
  nav {
    position: static;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }
  li {
    display: inline;
  }
  li > a {
    display: inline-block;
    padding: 5px 10px;
    line-height: 1.5rem;
    font-size: .8rem;
  }
}
