:root {
  --form-background-color: rgba(180,180,180,1.0);
  --form-heading-background-color: aliceblue;
  --form-border-color: lightgray;
  --form-field-border-color: lightgray;
  --form-field-explanation-color: black;
  --form-field-input-color: black;
  --form-input-color: cyan;
  --form-field-input-outline-color: magenta;
  --form-button-background-color: darkgray;
  --form-subform-border-color: darkred;
}

a {
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:focus , a:hover {
  text-decoration: underline;
}

a:active {
  color: red;
}


body
{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
  font-style: normal;
  max-width: 1200px;
  margin: auto;
  background: #ffebcd;
  display: flex;
  flex-direction: column;
}

/* body {
  display: grid;
} */

header {
  background: #ddd;
  max-width: 1200px;
  height: 120px;
  display:block;
}

.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  /* display:block; */
}

.main {
  /* width: 100%; */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
  font-style: normal;
  word-wrap:break-word;
  width: 100%;
  word-wrap: break-word;
  overflow: hidden;
  
}

.footer {
  background: lightgray;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
  font-style: normal;
}

#hyozan-logo {
  height: 90px !important;
}

.navbar-right {
  display: flex;
  justify-content: right;
  align-items: center;
}
#burger-menu {
  height: 55px;
  padding: 10px;
  
}

#navlinks {
  display: none;
}

#navlinks a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 17px;
  display: block;
}


#rotate-text {
  filter: drop-shadow(2px 2px rgb(36, 35, 35) );
}


.content-box {
  /* border-color: aqua;
  border-bottom-width: 4px ;
  border-style: solid; */
  /* padding: 10px; */

  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
  font-style: normal;
  word-wrap:break-word;
  width: 100%;
  overflow: auto;
  /* display: grid; */
  /* background-color: bisque; */

}

.center {
  margin:auto;  
  overflow: auto;
  word-wrap:break-word;
}

.featured {
  font-size: 20px;
  overflow: auto;
  text-align: center;
}

.subheading {
  font-size: 33px;
  color: darkgreen;
  text-align: center;
}

#hero-content {
  background-image: url("/img/hero_background_doggie.jpg");
  background-repeat: no-repeat;
  color: #fafafa;
  padding: 20px;
  display:box;
  height:400px;
  
}

#hero-message-box {
  width: 50%;
  height: 80%;
  background: rgba(100,100,100,0.5);
  background-blend-mode: lighten;
  padding: 30px;
}

#hero-message-box h2 {
  width: 60%;
  font-size: medium;
}

#hero-message-box button {
  /* background-color: #1a353f; */
  float: right;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;  
  font-style: normal;
  font-size: large;

}


.tempmessage {
  padding-left: 20px;
  align-self: center;
  display: flex;
  /* height: 300px; */
  border-color: gray;
  border-width: 1px;
  border-radius: 3px;
  border-style: solid ;
  background-color: #ddd;
  vertical-align: middle;
  align-items: center;
}

.tempmessage-icon{
  flex: 1;
  width: 20px;
  align-self: center;
  vertical-align: middle;
  align-items: center;
  padding: auto;
}

/* .tempmessage-icon img {
  width: 20px;
  height: 20px;
} */

.tempmessage-text{
  flex:9;
  align-self: center;
  vertical-align: middle;
  padding-left: 30px;
}

/* Responsive Elements */
@media only screen and (min-width: 768px) {
  #promo-cards-holder, #promo-card-image-holder {
    display: flex;
    flex-direction: row;
  }
  
}


