body {
            font-family: 'MS PGothic', 'MS Gothic', sans-serif;
            background: url('https://i.pinimg.com/1200x/17/19/3e/17193e20d12a5bfc19a5ead45d30bcf3.jpg') no-repeat;
             background-repeat: repeat;
            padding: 20px;
  font-size: 18px;
  margin: auto;
  zoom: 1.0; 
 
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 120px 560px auto;
  gap: 1px;
  padding: 1px;
   max-width: 800px;
      

}
.container div {
  background-color: white;
  padding: 2px;
    overflow-y: auto;

}
.container div.header {
  grid-area: header;
  text-align: center;
   overflow: hidden;
        border: 1px solid rgb(0, 0, 0);
}

.header img {
  display: grid;
width: 99%;
  height: 120px;
object-fit: cover;      
  overflow: hidden;
  border: 2px solid #c9e2c9;

}
.container div.menu {
  grid-area: menu;
	height: 300px;
	overflow: auto;
border-width: 0;
        border: 1px solid rgb(0, 0, 0);

}

.links {
  padding: 0px;
  justify-content: left;
  line-height: 2;

}
.container div.content {
  grid-area: content;
        border: 1px solid rgb(0, 0, 0);
}
.container div.footer {
  grid-area: footer;
  width: auto;
  height: 80%;
  overflow: hidden;
  text-align: center;  
        border: 1px solid rgb(0, 0, 0);

}
.right-content {
  display: grid;
        border: 1px solid rgb(0, 0, 0);
object-fit: cover;      
  overflow: hidden;
}

 .flex-container {

display: flex;
justify-content: center;
align-items: center;
height: 100vh;

} 
.contact-wrapper {
display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sidebar-section {
margin-bottom: 20px;
}

.profile-box {
  background: #fff;

  border: 1px solid #5DC12F;
}

hr.new1 {
  border-top: 1px solid black;
}

.post {
  display: grid;
    margin: auto;
  margin-bottom: 25px;
  background: #fff;
  border: 2px groove #5DC12F;
  padding: 35px;
  overflow-y: auto;
  width: 500px;
  justify-content: center;
}
.main-content {
  flex: 1;
  overflow-y: auto;
  height: 300px;
  padding: 20px;
  background: url('https://file.garden/aNdsP58WZVBne2nG/website/battleback_ow_download.png');
    background-attachment: scroll;
    background-size: 76%;
  background-attachment: fixed;
}

.post-title {
  font-size: 16px;
  color: #6FD142;
  font-weight: bold;
  margin-bottom: 10px;
  border-left: 4px solid #5DC12F;
  padding-left: 8px;

}

.updates {
  font-size: 15px;
}
.post2 {
  display: flex;
    flex-direction: row;

}
.pagedoll {
position: absolute;
  top: -300px;
  right:-230px;
  pointer-events: none;
}

.pagedolls {
 position: relative;
            pointer-events: none;

}



.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 5px;
}

.galleryitem {
	padding:5px;
	max-width:95%;
}

.galleryitem img {
	max-width:100%;
}