body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
  color: #ffffff;
}

/*candy-wrapper*/
#wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #000000;
  border: 1px solid #ff96fa;
}

/*blown-head*/
#header {
  background: #da00ed;
  color: #ffffff;
  padding: 20px;
}

#header h1 {
  margin: 0;
  font-size: 24px;
}

/*map_of_the_head*/
#headerInner {
  overflow: hidden;
}

/*logoimg*/
#logo {
  float: left;

  width: 64px;
  height: 64px;

  margin-right: 15px;

  display: block;
}

/*text_next_to_logo*/
#titleArea {
  float: left;
}

/*spacing_fuckery*/
#titleArea h1 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.tagline {
  margin: 5px 0 0;
  font-size: 13px;
  opacity: 0.8;
}

/*google-maps*/
#nav {
  background: #000000;
  padding: 10px;
}

#nav a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 10px;
  font-size: 14px;
}

#nav a:hover {
  text-decoration: underline;
}

#menuToggle {
  display: none;
  margin-left: 10px;
}

/*(s)lay0ut*/
#layout {
  overflow: hidden; /*clearfix fuckery or something*/
}

/*food-bar*/
#sidebar {
  float: left;
  width: 25%;
  padding: 15px;
  background: #000000;
  box-sizing: border-box;
  border-right: 1px solid #ffffff;
}

/*wall-of-text*/
#content {
  float: left;
  width: 75%;
  padding: 20px;
  box-sizing: border-box;
}

/*fancy-pants box*/
.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px
}

@media (max-width: 900px) {
  .boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .boxes {
    grid-template-columns: 1fr;
  }
}

/*fancy-pants box child*/
.boxch {
  flex: 1 1 250px;
}

/*rigid box, legacy*/
.box {
  border: 1px solid #ffffff;
  padding: 15px;
  margin-top: 15px;
  background: #000000;
}

/*feet*/
#footer {
  clear: both;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  background: #000000;
  color: #ffffff;
}

/*nokia3310*/
@media (max-width: 700px) {

  #sidebar {
    float: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  #content {
    float: none;
    width: 100%;
  }

  #menuToggle {
    display: inline-block;
  }
}

/*no-js-fallback*/
.no-js #menuToggle {
  display: none;
}