*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body{
    background-image: url('images/crosspattern.jpg');
    background-size: 150px;
    animation: scrolling 300s linear infinite ;
    background-attachment: fixed;
}

@keyframes scrolling {
    from{
        background-position: 0 0;
    }
    to{
        background-position: 235% 500%;
    }
}

#container{
    position:fixed;
    display: block;
    top: 13vh;
    height: 87vh;
    width: 40vw;
    left: 30vw;
   background-color: white;
    border: 1px solid black;
    overflow:scroll;
}


.post{
    list-style: none;
    margin: 3%;

    padding: 2%;
    border: 1px dashed black;
}
h1{
    font-family: "Monsieur La Doulaise", cursive;
    
    position: relative;
    width: 350px;
    padding-left:10px;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  top:15px;
  left:50px;
  background-color: white;
  
}

#titlebox{
    height: 13vh;
    display: block;
    position:fixed;
    border-bottom: 1px solid black;
    background-size: 40%;
    background-image: url("https://img.freepik.com/premium-vector/snow-leopard-pattern-print-texture-background_684882-3.jpg");
    width: 40vw;
    left: 30vw;
    border-top: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
 }

 #end{
    display: block;
    width:fit-content;
    position: relative;
    margin: auto;
 }
