:root {
--button: url('https://i.postimg.cc/fbF6rfB4/button.png');
--long: url('https://i.postimg.cc/Rhj4jp84/long.png');
--banner: url('https://i.postimg.cc/WpgThykS/banner2.png');
--right: url('https://i.postimg.cc/tg4gKSqt/r.png');
--left: url('https://i.postimg.cc/Dzwz9jvr/l.png');
}

 @font-face {
                font-family: 'EB Garamond', serif;
            }

body {
  background-color: white;
  color: black;
  font-family: 'EB Garamond', serif;
  font-size: 18px;
}

main a:link{
  color: #FFE6AB;
  text-decoration: none;
}

main a:visited{
  color:#BDAA7E;
}

summary .gallery{
  font-weight: bold;
  font-size: 22px;
}

#container {
  max-width: 1000px;
  margin: auto;
}

#flex{
display: flex;
min-height: 500px;
}

#header {
  width: 100%;
  height: 200px;
  background-color: black;
  background-size: 100%;
}

#banner {
  width: 100%;
  height: 93px;
  background-image: var(--banner);
}

#nav {
  width: 100%;
  height: 30px;
  margin-top: 2px;
  background-color: white;
  border-style: hidden hidden solid hidden;
}

#nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}

#nav li {
  font-weight: bold;
  padding-top: 0px;

}

#nav li a:link {
  color: black;
  font-size: 20px;
  text-decoration: none;
}

#nav li a:visited {
  color: black;
  text-decoration: none;
}

#nav li a:hover {
  text-decoration: underline;
}

#sidebar {
  width: 240px;
  background-color: transparent;
  padding: 5px;
  order: 1;
}

#main {
  width: 760px;
  background-color: transparent;
  padding: 20px;  
  order: 2;
}

#footer {
  width: 100%;
  height: 20px;
  margin-top: 10px;
  font-size: small;
  text-align: center;
  border-style: dotted hidden hidden hidden;
}

#button {
  display:flex;
  background-image: var(--button);
  margin:auto;
  width:220px;
  height:78px;
  color: white;
  font-weight:bold;
  justify-content:center;
  align-items:center;
  margin-top:15px;
}

#long {
display:flex;
  background-image: var(--long);
  margin:auto;
  width:525px;
  height:78px;
  color: white;
  font-weight:bold;
  justify-content:center;
  align-items:center;
  margin-top:15px;
}

#guard1{
  z-index:-1;
  bottom:10px;
  right:0px;
  background-image: var(--right);
  width:564px;
  height:320px;
}

#guard2{
  z-index:-1;
  bottom:10px;
  right:0px;
  background-image: var(--left);
  width:601px;
  height:193px;
}