body {
  text-align: center;
  color: black;
  font-family: Times, times, serif;
  margin: 20px;
  padding-top:50px;
  background-image: url("../img/tavern-warm.jpg");
  background-repeat: no-repeat; /* Prevents image from repeating */
  background-size: cover; /* Scales image to cover the entire element */
  background-position: center center; /* Centers the image */
 
}

header {
  padding: 30px;
}

h1 {
  font-size: 24pt;
  font-style: bold;
  color: #262423;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smaller {
  height:150px;
}

ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

li {
  padding: 15px;
  font-weight: bold;
  font-style: italic;
  color: lightyellow;
}

a:link {
  font-weight: bold;
  font-style: italic;
  color: lightyellow;
  text-decoration: none;
}

a:visited {
  text-decoration: none;
  color: lightyellow;
}

a:hover {
 text-decoration: underline;
}

.box {
  display: flex;
  flex: 0 0 650px; /* Fixed width of 750px */
  background: honeydew;
  padding: 25px;
  border : 5px solid royalblue;
  margin-left: 60px;
  margin-right: 60px;
  justify-content: center;
  align-items: center;
}

.photo {
  height: 250px;
  padding-right: 20px;
  
}

.text {
  margin-left: 15px;
  margin-right: 15px;
}

.candle {
  height: 20px;
}

.button-zone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button {
  padding: 15px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: black;
  background-color: #FED09B;
  border-color: #673200;
  margin: 5px 30px;
}

.button:hover {background-color: #F99589}

.button:active {
  transform: translateY(4px);
}

a.button {
  color: black;
  font-size: 11pt;
  font-family: arial;
  font-style: normal;
  font-weight: normal;
  box-sizing: border-box;
  border:2px solid #673200;
  margin-top: 5px;
 
}


