*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Get rids of box around links when pressed on Safari iPhone.
See https://stackoverflow.com/questions/3516173/ipad-safari-how-to-disable-the-quick-blinking-effect-when-a-link-has-been-hit */
* {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body,
h1,
h2,
h3,
h4,
h5,
address,
p,
img,
picture,
svg,
video,
form,
fieldset {
  margin: 0;
  padding: 0;
}

fieldset {
  border: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  border: 0;
}

body {
  font-family: futura-pt, sans-serif;
  font-size: 2rem;
}

h1 {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  h1 img {
    width: 30rem;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  h1 img {
    width: 40rem;
    height: auto;
    margin: 0 auto;
  }
}
h1 span {
  display: none;
}

p {
  margin: 0;
}

a {
  color: #009842;
}

a:hover {
  color: #505050;
}

address {
  font-style: normal;
  line-height: 1.5;
  color: #505050;
}

.centre {
  margin: 0 auto;
  width: auto;
}
@media screen and (min-width: 1024px) {
  .centre {
    width: 1024px;
  }
}

header {
  margin: 3rem;
}

main {
  margin: 0 3rem;
}

.intro img {
  margin-bottom: 3rem;
}
.intro p {
  margin-bottom: 3rem;
  text-align: center;
  font-style: italic;
  color: #8d8d8d;
}

.info {
  display: grid;
  grid-auto-flow: row;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .info {
    gap: 3rem;
    grid-auto-flow: column;
    grid-template-rows: 1;
  }
}

.contact-details {
  margin-bottom: 3rem;
}
.contact-details h2 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #1c1c1c;
}
.contact-details p:last-of-type {
  margin-top: 1rem;
}
.contact-details address {
  margin-bottom: 2rem;
}

.opening-times h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1c1c1c;
}

.grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1;
}
.grid-row.bg {
  background-color: #f3f3f3;
}
.grid-row div {
  padding: 1rem;
}
.grid-row div:nth-child(2) {
  text-align: right;
}

footer {
  margin: 3rem;
}
footer p {
  font-size: smaller;
  color: #8d8d8d;
}