body {
  background-color: white;
  text-align: center;
  margin: 0;
  padding: 0;
}

h2 {
  color: black;
  background-color: #faebca;
  width: 100%;
  margin: 0;
  padding: 8px;
  font-size: 20px;
}

h2, .rectangle {
  width: 100%
}

.content-container h1 {
  align-items: center;
}

.rectangle {
  grid-area: navigation;
  background-color: #fcf9ed;
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.20);
  display: flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
  z-index: 3;
}

.rectangle img {
    max-width: 80px;
    height: auto;
    display: block;
    align-self: flex-start;
    margin-left: 10px;
}

.cimg{
  max-width: 450px;
  max-height: 450px;
  align-self: flex-end;
  margin-top: -250px;
  margin-right: 20px;
}

.cimg2{
  max-width: 409px;
  max-height: 409px;
  align-self: flex-start;
  margin-left: 20px;
}

.button {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  font-size: 18px;
  flex: 0 0 auto;
  color: white;
  background-color: #423d1d;
}

.space{
  flex: 1;
}

.button:hover {
  background-color: transparent;
  color: black;
  border: 2px solid #423d1d;
  transition: 0.5s;

}

.rectangle2 {
  background-color: #faebca;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}


a {
  text-decoration: none;
  color: black;
}

* {
  box-sizing: border-box;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'header'
    'navigation'
    'content'
    'footer'; 
}

.content-container {
  background-color: #faebca;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: auto;
  gap: 20px;
}

p {
    margin: 0 0 12px 0;
    line-height: 2;
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
    font-weight: 100;
}

.content-container h2 {
    margin-left: 20px;
}

.imgtext {
  margin-right: 450px;
}

div.scroll-container {
  background-color: #333;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  height: 350px;
  width: 1000px;
  align-self: flex-end;
  margin-right: 10px;
  margin-top: -370px;
}

div.scroll-container img {
  padding: 10px;
  height: 330px;
}

div.scroll-container2 {
  background-color: #333;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px;
  height: 350px;
  width: 1000px;
  align-self: flex-end;
  margin-right: 10px;
  margin-top: 20px;
}

div.scroll-container2 img {
  padding: 10px;
  height: 330px;
}

video {
  margin-left: 20px;
  border: 10px solid grey;
}

.site {
  color: black;
  font-size: 15px;
  transition: 0.3s;
  font-weight: bold;

}
.site:hover {
  transform: translateY(-5px);
  color: blue;
  text-decoration: underline;
}