/* 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." */

body {
  background-image: url("https://glob567.neocities.org/websitebg.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-color: white;
  color: #290a14;
  font-family: Verdana;
  
}
.containertop{
  /* 1. Set the width of your 'pillar' */
  max-width: 1200px; 
  
  /* 2. Center it horizontally */
  margin: 0 auto;   
  
  /* 3. Optional: Add padding so content doesn't touch the edges on mobile */
  padding: 0 20px;
}
.sidelinks{
  max-width:180px; 
  position: fixed;
  /* Start at 50% (middle of screen) 
     + 400px (half the pillar width) 
     + 20px (gap) */
  left: calc(50% + 620px); 
  top: 100px;
  width: 150px;
}
.containermain{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
table {
    font-family: arial, sans-serif;
    width: 100%;
    border: 3px solid #ab4b3a;
    border-radius: 10px;
  }

  td, th {
    border: 1px solid #ab4b3a;
    text-align: center;
    padding: 8px;
    background-color: #e8a984;
    border-radius: 10px;
  }
  .sidelinks th:hover{
   background-color: #d47a6a; 
  }
  .containertop th:hover{
   background-color: #d47a6a; 
  }
  .containermain th {
    text-align: start; 
  }
  .h1{
    text-align: left;
  }