/* rumlcom2020.css May 19, 2020 */
*, *:before, *:after {
  box-sizing: inherit;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Palatino, Georgia, Times ,serif;
  font-size: 1.1rem;
  background: wheat;
}
p {
  text-indent: 1rem;
}
p + p {
  margin-top: 0.3rem;
}
header {
  position: relative;
  display: flex; /* flex-direction: row; justify-content: flex-start; */
  justify-content: space-between;
  height: 5rem;
  width: 100%;
  background: #C11B17;
  color: #EEE;
  z-index: 10;
}
header section {
  display: inline-flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
}
header section img {
  height: 4rem;
  box-shadow: 3px 3px 9px #444444;
  border-radius: 6;
}
header section div {
  margin-top: 6px;
  font-size: 2.5rem;
  text-shadow: 2px 2px 3px #333333;
}
header nav {
  display: inline-flex;
  justify-content: space-evenly;
  align-items: flex-end;
  padding: 1.6rem 2rem 1.3rem 2rem;
  font-size: 1.3rem;
}
header nav a {
  padding: 0 0.5rem;
  text-decoration: none;
  color: #EEE;
}
header nav a:hover {
  transition: border 0.5s,
              font-size 0.5s,
              font-weight 0.5s;
  border: 0.2rem solid #EEE;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}
main section {
  border-bottom: 8px solid #C11B17;
  font-size: 1.5rem;
}
#currentprojects {
  padding: 2rem 4rem 4rem 4rem;
}
#currentprojects h4 {
  margin: 1.5rem 0 0.5rem 0;
}
#currentprojects li {
  padding: 0.5rem 0;
}
#foodintro {
  margin: 2rem 3rem;
}
#foodBanner {
  position: relative;
}
#foodBannerPhoto {
  width: 100%;
}
#foodCaption {
  position: absolute;
  top: 50%;
  left: 8%;
  border-radius: 0.7rem;
  background-color: wheat;
  opacity: 0.7;
  padding: 0.5rem 0.5rem 0 0.5rem;
  font-size: 3rem;
  font-weight: bold;
}
.foodSpecialtyWrap {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border: 4px solid #C11B17;
  border-radius: 5px;
  margin: 0 3rem 3rem 3rem;
  padding: 1.2rem 0;
}
.foodSpecialtyWrap img {
  width: 35%;
}
.foodSpecialtyWrap p {
  width: 50%;
  text-indent: 0;
}
.foodSpecialtyHeadline {
  font-weight: bold;
  font-style: italic;
}
#aphorisms {
  padding: 3rem;
}
#vespa {
  margin: 2rem 3rem;
}
#vespacaption {
  margin-bottom: 2rem;
}
#vespa img {
  width: 100%;
}
#summerlinks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 2rem;
  padding: 2rem;
  border: 2px solid #C11B17;
  border-radius: 5px;
}
#summersheadline {
  font-weight: bold;
}
/* aside group for special recipes */
/* details.css has styling for details/summary tags */
aside {
  maxwidth: 70%;
  margin: 3rem;
  padding: 0.5rem;
  border: 2px solid brown;
}
aside > p {
  padding: 0.5rem 0;
}
