
.container {
  position: relative;
  padding-left: 113px; 
  padding-right: 113px;
}

.container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  
  background-image: url('https://i.postimg.cc/527LYrMJ/Untitled-Project-3-removebg-preview.png'); 
  background-repeat: repeat-y; 
  background-size: 100% auto; 
  
}

.container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 200px; 
  
  background-image: url('https://i.postimg.cc/Jz6ZDFW1/Untitled-Project-2-removebg-preview.png'); 
  background-repeat: repeat-y; 
  background-size: 100% auto; 
}

#flex {
    position: relative;
}

#leftSidebarContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    transform: none; 
}

#leftSidebarContainer img,
#leftSidebarContainer h1,
#leftSidebarContainer nav {
    display: block;
    width: 100%;
    transform-origin: right center; 
    transform: skewY(-4.5deg); 

}


#leftSidebarContainer img, #rightSidebarContainer img {
  
    filter: drop-shadow(0px 0px 3px rgb(126, 164, 215)) drop-shadow(0px 0px 3px rgb(255, 255, 255)) brightness(1.02);   



}

#rightSidebarContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    transform: none; 
}

#rightSidebarContainer img {
    display: block;
    max-width: 100%; 
    height: auto;   
    object-fit: contain; 

    transform-origin: left center; 
    transform: skewY(4.5deg); 
}


.stamps img {
  
  width: 88px;
  
}

.top-divider {
    position: relative; 
    display: block;
    height: 45px; 
    margin-left: 0;
    margin-right: 0;
    width: 100%; 
    z-index: 9;
    background: black;
    
    background-image: url('https://i.postimg.cc/Jz5mKDZx/Untitled-Project-6-1-removebg-preview.png');
    background-repeat: repeat-x; 
        background-size: contain; 
    background-position: top left; 
}





@media only screen and (max-width: 800px) {

.container {
  
   padding-left: 0 ;
    padding-right:0;
    
}


  .container::before,
  .container::after {
    display: none;
    content: none;
  }

}




  