@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
:root {
  --default-font: 'Architects Daughter', sans-serif;
  --primary-color-dark: #242424;
  --primary-color-light: #dbdbdb;
  --text-dark: white;
  --text-light:black;
}
body {
  background-color: var(--primary-color-dark);
  color: var(--text-dark);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
  height: 100vh;
  width: 100vw;
}
#brand-logo {
  background-image: url(/assets/brand-logo.svg);
  background-repeat: no-repeat;
  background-size: 11rem;
  background-position: center;
  border: 1px solid var(--primary-color-light);
  border-radius: .6rem;
  height: 11rem;
  width: 11rem;
  margin: 0 auto;
  margin-top: 1rem;
}

.directions-link-text {
  display: block;
  max-width: 300px;
}
