html,body {
  font-family: sans-serif;
  width: 100vw;
  height: 100vh;
  margin: 0;
}
body > div {
  padding: 4.1em 50px 50px;
}


#header, #fakeheader {
  background-color: #333;
  width: 100vw;
  min-height: 4em;
  padding: 0;
}

#header {
  position: fixed;
  z-index: 1;
  font-weight: bold;
  font-size: 16pt;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

#header a {
  text-decoration: none;
  font-weight: lighter;
  color: #fff;
}

#header a img {
  vertical-align: middle;
  height: 1.5ch;
}

#header a:hover {
  transform: scale(1.1);
  text-decoration: underline;
}
#linkgroup { flex-basis: 100%; }

#headerlinks {
  padding: 10px;
  display: flex;
  justify-content: center;
  column-gap: 5vw;
}

.hamburger {
    position: relative;
    display: none;
    width: 1.25em;
    height: 0.8em;
    margin-right: 0.3em;
    border-top: 0.2em solid #fff;
    border-bottom: 0.2em solid #aaa;
    cursor: pointer;
}
.hamburger::before {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 0px;
    width: 100%;
    border-top: 0.2em solid #ccc;
}
.hamburger:hover::after, .hamburger:focus::after { content: ""; }


h2 {
  font-weight: lighter;
  font-size: 2em;
  font-style: italic;
}

h3 { margin: 0; }

a {
  text-decoration: none;
  color: #2af;
}
a:hover { text-decoration: underline; }


#servicewrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
}

#servicewrap > div {
  text-align: center;
  margin: 15px;
}

#services li { margin: 5px; }
#services > p { text-align: center; }

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}


#reviewwrap {
  margin: 0 auto;
  width: 75%;
  min-height: 75vh;
  text-align: center;
}

#pastreviews {
  max-height: 65vh;
  border: solid black 1px;
  border-radius: 10px;
  overflow-y: scroll;
}

.reviewitem {
  width: 75%;
  text-align: left;
  padding: 5px 20px;
  margin: 10px auto;
  border-radius: 15px;
  background-color: #eee;
}

.reviewitem > * {
  padding: 0;
  margin: 3px;
}

.rev-rating { font-size: larger; }

.rev-date {
  color: 555;
  font-size: smaller;
}

#reviewwrap form * { margin: 3px auto; }
#newreview { 
  height: 25%;
  margin-top: 10px;
}

#newreview input { font-size: 12pt; }

.stars {
  color: #ec2;
  display: inline-block;
}

input.star {
  opacity: 0;
  width: 0;
}

.star {
  float: left;
  font-size: 36px;
  cursor: pointer;
}

label.star:after { content: '\2605'; }
input.star:checked ~ label.star:after { color: #333; }

input[name='b-email'] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}


#process p { font-size: larger; }

#procwrap {
  display: flex;
  flex-flow: column wrap;
  align-items: stretch;
  justify-content: left;
}

.procstep {
  margin-left: 1em;
}

.procstep * {
  margin: 0.25em;
}

.procbreak {
  height: 0px;
  width: 15ch;
  border: solid #48b 3px;
  border-radius: 0 30% 30% 0;
  margin-top: 5px;
  margin-bottom: 2em;
}


#contactwrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}

#contactwrap > div { margin-bottom: 10px; }

#contactform {
  border: solid #ccc 1px;
  border-radius: 15px;
  padding: 7px;
  font-size: 14pt;
}

textarea {
  border: solid black 1px;
  border-radius: 6px;
  font-size: 12pt;
  font-family: sans-serif;
  min-height: 10ch;
  width: 50%;
  min-width: 40ch;
}


#footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
}


#linkwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

#linkwrap * {
  font-size: 30px;
  margin: 5px 10px;
}

#disclaimer {
  width: 50%;
  display: block;
  margin: 40px auto;
  color: #888;
}

#copyright {
  text-align: center;
  font-size: smaller;
  margin-top: 30px;
  display: block;
}


@media screen and (max-width: 640px) {

  body > div {
    padding: 4em 7% 7%;
    text-align: center;
  }

  #header > * { margin: 5px auto; }
  #header a { min-width: 60%; }
  #linkgroup { flex-basis: 100%; }
  .hamburger {display: block; margin: 2px auto;}
  #headerlinks { display: none; }
  #headerlinks div { padding: 3px; }

  #servicewrap > div, #contactform {
    margin: 15px;
    text-align: center;
    width: 100%;
  }

  #reviewwrap { width: 100%; }

  textarea {
    width: 90%;
    min-width: unset;
  }

  .procbreak {
    margin-left: auto;
    margin-right: auto;
    border-radius: 30%;
  
  #linkwrap *, #disclaimer {
    width: 90%;
  }
}
