body, html {
  height: 100%;
  display: grid;
}

body {
  font-family: garamond, georgia, times new roman, serif;
}

.main {
  margin: auto;
}

.bizinfo, .details {
  background-color: rgba(255,255,255,0.3);
  padding: 15px;
  border-radius: 12px;
  max-width: 700px;
  margin: 15px;
}

.bullets {
  background-color: rgba(255,255,255,0.3);
  padding: 1px;
  border-radius: 12px;
  margin: 1px;
}

.bizinfo {
  text-align: center;
}

.details {
  text-align: center;
}

h1, h2, h3 {
  padding: 0px;
  margin: 0px;
  text-align: center;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(7px + 6 * ((100vw - 320px) / 680));
  }
  .celltel {
    display: inline-block;
  }
  .comptel {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 20px;
  }
  .celltel {
    display: none;
  }
  .comptel {
    display: inline-block;
  }
  .bimage {
    position: absolute;
    top: 10px;
    left: calc(50% - 533px);
    z-index: -5;
    opacity: 75%;
    width: 1080px !important;
  }
  .details {
    padding-top: 70px;
  }
  .bullets, .details {
    width: 950px;
    margin: auto;
  }
  .bullets {
    margin-top: 50px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

a[href^="tel:"] {
  color: #800;
  text-decoration: none;
}

a[href^="tel:"]:before {
  content: "\260e";
  margin-right: 0.5em;
}