/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  html,body{
      margin: 0;
      padding: 0;
      height:100%;
      background-image:url('https://entityinthevoid.neocities.org/background%20imgs/star%20pix.gif');
      background-color:#2d3a80;
      font-family: 'Titillium Web', sans-serif;
      font-size: 13px;
      color:#fff;
      text-align:justify;
      letter-spacing:2.5px;
  }
  
  #banner{
      height:300px;
      width:100%;
      background-image:url('https://entityinthevoid.neocities.org/background%20imgs/Shop_Banner.jpg');
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-size: cover; /* Scales the image to cover the entire container, potentially cropping */
      background-position: center; /* Centers the image within the container */
      display: flex;
      border:1px solid #230023;
      padding-top: 50px;
  }

  #box1{
      position:relative;
      width:735px;
      min-height:100%;
      margin:0px auto;
      /*padding:8px;*/
  }


  #linkity{
      position:relative;
      top:-23px;
      /*left:7px;*/
      /*width:735px;*/
      line-height:35px;
      text-align:center;
      letter-spacing: 20.5px;
  }

  #linkity a{
      width:120px;
      display:inline-block;
      margin-right:-3px;
      background-color:#230023;
      color:#fff;
      -moz-border-radius:15px 15px 15px 15px;
      -webkit-border-radius:15px 15px 15px 15px;
      /*  border-radius:10px 10px 0 0;  */
      text-transform:uppercase;
      letter-spacing:2px;
      border:1px solid #230023;
      cursor: pointer;
      font-size: 14px; /* Initial font size */
  }

  #linkity a:hover{
      -moz-transition:.4s;
      -webkit-transition:.4s;
      transition:.6s;
      transform: scale(1.4); /* Enlarge the hovered tab by 20% */
      font-size: 16px; /* Increase font size on hover */
      color:#ffcb00;
      background-color:#c2a32b80;
      border:1.5px solid #e1c454;
  }

  #box2{
      position:absolute;
      width:380px;
      min-height:100%;
      border:8px solid #50335078;
      margin-right:4px;
      padding:12px;
      background-color:#a481b021;
      margin-bottom:4px;
  } 
  
  #box3{
      position:absolute;
      left:495px;
      width:210px;
      min-height:100%;
      border:8px solid #50335078;
      padding:12px;
      background-color:#a481b021;
      margin-bottom:4px;
      text-align:left;
  }

  h1{
      text-align:center;
      font-size:14px;
      line-height:30px;
      font-family:times;
      font-weight:bold;
      display:block;
      border-bottom:1px solid #a481b0;
      letter-spacing:2px;
      margin: -2px 0 0 -4px;
  }

  a{
      background-color:#230023;
      color:#fff;
      text-decoration:none;
      font-style:italic;
  }
  
  a:hover{
      transform: scale(1.4); /* Enlarge the hovered tab by 20% */
      font-size: 16px; /* Increase font size on hover */
      color:#ffcb00;
      background-color:#c2a32b80;
  }