/* 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." */

body {
  background-color: #f0eeeb;
  font-family: Georgia;
  font-size: 13px;
}

h1 {
  color: #313131;
  font-family: Georgia;
  text-align: center;
}

h2 {
  color: #313131;
  font-family: Georgia;
  text-align: center;
  padding: 10px;
  font-size: 15px
}

h3 {
  color: #313131;
  font-family: Georgia;
  text-align: center;
  padding: 10px;
}

p {
  font-family: Georgia;
  color: #707070;
  font-size: 13px;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  text-align: center;
  padding: 20px;
}

img {
  display: block;
  margin: auto;
  width: 50%;
  margin-left: -7px;
}

/* header */
.row {
  display: flex;
}

.column {
  flex: 50%;
  padding: 5px;
}

/* The sidebar menu */
.wrapper {
  display: flex;
  justify-content: space-between;
}

.main {
  border: 0px;
  border-radius: 10px;
  width: 40%;
  height: 200vh;
  margin-right: 220px; /* Same width as the sidebar + left position in px */
  font-size: 13px; /* Increased text to enable scrolling */
  font-family: Georgia;
  padding: 20px;
  background-color: #ffffff;
  
}

.sidebar {
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  background-color: #ffffff;
  width: 15%;
  height: 45vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 300px;
  
}

/* The navigation menu links */
.sidebar a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 13px;
  color: #707070;
  font-family: Georgia;
  display: block;
  letter-spacing: 0.04em;
  word-wrap: break-word;
  text-align: center;
  
}

/* When you mouse over the navigation links, change their color */
.sidebar a:hover {
  color: #acacac;
}

.imageflex {
  display: flex;
}

.imageflexcontent{
  margin-left: 20px;
  margin-top: 0px;
}
