body {
font-family: 'Times New Roman', serif;
font-size: 16px;
background-size: cover;
background-color: #000;
color: #FFFFFF;
background-image: url(https://vhshorror.neocities.org/attributes/bg.jpg);
  background-attachment: fixed;
margin: 0;
}
 
.wrapper {
  margin: 0 auto;
}

.container {
      display: -moz-flex;
    display: -webkit-flex;
    display: grid;
    grid-template-columns: 200px 600px 200px ;
      grid-template-rows: 770px;
    column-gap: 10px;
    justify-content: center;
    align-items: flex-start;

      grid-template-areas: 
    "sidebar-left main sidebar-right"
    "stamps stamps stamps";
}
  
.sidebar-right {
  width: 200px;
  grid-area: sidebar-right;
  }
  
.sidebar-left {
  width: 200px;
    grid-area: sidebar-left;
}
  
.main {
  width: 600px;
    grid-area: main;
  }
  
.side {
    display: flex;
align-content: center;
}
  
.box {
  border: 2px inset #DE240B;
  background: #000;
  padding: 10px;
margin-bottom: 10px;
  /* box-shadow: 0 0 8px 2px #DE240B; */
  }
  
.box-scroll {
  border: 2px inset #DE240B;
  background: #000;
  padding: 10px;
margin-bottom: 10px;
  height: 200px;
  overflow: scroll;
  }
  
.box img {
  max-width: 100%;
  height: auto;
  }
  
  
/* header stuff */
.header {
width: 100%;
background-size: 100%;
margin-top: 30px
            }

.header img {
transition: all 1s; 
  display: block;
  margin: auto;
}

.header img:hover {
transform: scale(1.03);
}

/* navigation links stuff */
.navbar {
font-family: 'Army';
font-size: 60px;
margin: 0;
text-align: center;
word-spacing: 30px;
margin-top: 10px
}

.navbar a {
color: #ffffff;
font-weight: 800;
text-decoration: none;
display: inline-block;
transition: .3s ease;
}

.navbar a:hover {
color: #DE240B;
transform: translateY(-20%);
display: inline-block;
cursor: pointer;
transition: .3s ease;
}

.footer {
height: 0;
text-align: center;
font-size: 14px;
color: #A1A1A1;
margin-bottom: 50px
}

.title {
  font-family: Evil Dead;
  color: #fff;
  font-size: 30px;
text-shadow: 2px 2px 1px #DE240B;
}

.shine img {

    transition: transform 0.3s ease-in-out;

}

.shine:hover img {

    transform: scale(1.1); /* Increases size by 10% */

}
