body {
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

body {
  display: grid;
  place-items: center;
  height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 500px;
}

header {
}

img {
  display: block;
  width: 100%;
}

section {
  display: flex;
  gap: 3rem;
}

.contact a {
  color: #000;
  text-decoration: none;;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact div {
  display: flex;
  gap: 10px;
  align-items: top;
}

.hours {
}

@media screen and (max-width: 500px) {
  body {
    display: block;
  }

  main {
    width: 100%;
    padding-top: 4rem;
  }

  section {
    flex-direction: column;
  }

  section,
  .contact {
    gap: 1rem;
  }
}
