/* Color Scheme
strong orange, (181, 144, 40), #d59028;
dark brown, (102, 42, 5), #662a05;
dark brown, (71, 29, 3), #471d03;
grayish orange, (186, 174, 148), #baae94;
soft orange, (271, 163, 93), #d9a35d;
ivory, (255, 255, 240), #fffff0; */

body {
  background-image: url('images/home.jpg');
  background-color: #662a05;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover; 
}

.logo {
  font-family: sans-serif;
  font-size: 5vw;
  font-weight: bold;
  text-shadow: 4px 4px 4px #000000;
  text-align: center;
  background-color: #662a05;
  width: 100%;
  padding: 15px 0px; 
  color: #d59028; 
}

/* This id is for the upper dropdown box */
#outer1 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 15%
}

/* This id is for the logo */
#outer2 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 33%;
}

/* This id is for the lower button group */
#outer3 {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 70%;
}

.inner {display: inline-block;}

a {
  text-decoration: none;
  color: #fffff0;
}

/* .marquee {
  background-color: #662a05;
  color: #fffff0;
  font-family: sans-serif;
  font-size: 20px;
  font-weight: normal;
  border: 2px solid black;
  padding-top: 10px;
  padding-bottom: 10px;
} */

.button {
  background-color: #d59028; 
  border: 2px solid #471d03; 
  color: #471d03;
  padding: 10px;
  text-align: center;
  /* text-decoration: none;
  display: inline-block; */
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  min-width: 150px;
  margin: 4px 2px;
  border-radius: 16px;
  cursor: pointer;
}

.button:hover {
  background-color: #baae94;
  opacity: 0.7;
}

.introbtn {
  overflow: hidden;
  background-color: #d9a35d;
  display: inline-block;
  width: 250px;
}

.introbtn #myLinks {
  display: none;
}

.introbtn a {
  font-family: sans-serif;
  color: #471d03;
  padding: 7px;
  display: block;
}

.introbtn a:hover {
  background-color: #baae94;
  opacity: 0.7;
}


