/*overall structure*/

html, body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: bisque;
  color: black;
  font-family: Verdana;
  font-size: 12pt;
  text-align: center;
  overflow-x: hidden;
}


/*announcement*/

.announcement {
  width: 100%;
  margin: auto;
  padding: 10px;
  background-color: red;
  color: white;
}


/*index*/

.back-button {
  display: inline;
  margin-left: 5%;
  margin-right: 95%;
  padding: 20px;
  background-color: pink;
  border-radius: 40px;
}

p {
  width: 90%;
  margin: 0 auto;
}

header {
  display: block;
  margin: auto;
  margin-bottom: 100px;
  padding: 50px 0 0 0;
}

.header-subheader {
  padding: 0;
}

h1 {
  padding-top: 20px;
  width: 80%;
  margin: auto;
}

h1 img {
  width: 200px;
  margin: auto;
  overflow: visible; /*figure out whats wrong with svg and how to style*/
}

.h1-subheader {
  font-weight: bold;
  font-variant: small-caps;
}

.special-offer {
  font-size: 10pt;
  background-color: pink;
  margin: auto;
  margin-top: 20px;
  padding: 10px;
  width: inherit;
}

.brand-list {
  width: 70%;
  margin: auto;
  padding: 20px 20px 50px 20px;
}

.brand-item {
  display: inline-flex;
  padding: 40px;
  list-style: none;
  text-align: center;
}

.brand-item p {
  max-width: 150px;
}

a {
  text-decoration: none;
}

img {
  font-size: 11pt;
  font-style: italic;
  overflow-wrap: break-word;
  width: 100px;
  height: 100px;
}

.franchising {
  display: inline-block;
  margin-bottom: 100px;
}

.franchising img {
  padding: 40px;
}

.other-operations {
  display: inline-block;
  padding: 0;
  text-align: center;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

span {
  color: red;
  font-size: 8pt;
  vertical-align: super;
}

footer {
  margin-top: 200px;
  margin-bottom: 40px;
  font-size: 8pt;
}

.site-info {
  margin-bottom: 20px;
}

.site-info li {
  display: inline;
  padding: 20px;
}


/*location pages*/

.location-buttons {
  margin-top: 50px;
}

.location-buttons p {
  display: inline;
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: pink;
  border-radius: 40px;
}

.location-info {
  margin: auto 10%;
}

.location-info div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 40px auto;
}

.location-info h2 {
  margin-top: 60px;
}

.location-info img {
  float: left;
  margin-left: auto;
  width: 30%;
  height: 200px;
}

.location-info p {
  float: right;
  margin-right: auto;
  text-align: left;
  align-self: center;
  width: 60%;
}


/*subsidary pages*/

.showcase {
  display: grid;
  margin: auto;
  width: 90%;
  gap: 20px;
  grid-template-columns: 2;
  grid-template-rows: 3;
}

.showcase-item {
  align-content: center;
}


















