/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

            :root {
                --body-bg-image: url('400_still.gif');
                /* colors */
                --content: #bc9374;
            }
           @font-face {
                font-family: OldEnglish; 
                src: url('fonts/OLDENGL.TTF');
            }


.wrapper {
  display: flex;
  justify-content: space-between;
}

.main,
.sidebar1 {
  border: 2px solid black;
  padding: 10px;
  font-family: verdana;
  font-weight: 500;
  text-decoration: none;
  background-color: #551e1f;
}

.main {
  width: 100%;
  background-color: #551e1f;
			margin-left: max-width: 100%; 10.5em;
			margin-right: max-width: 100%; 10.5em;

}

body {
  background-color: #070711;
  font-family: 80% verdana; 
  padding: 15px;
                background-size: 387px;
                color: #bf9677;
                background-image: url('400_still.gif');
}

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

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #cd2227; /* Set a background color */
  color: #e6d5aa; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 5px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}
#myBtn:hover {
  background-color: red; /* Add a different background color background on hover */
}
