/* 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 {
  margin: 40px;
  margin-top: 5px;
  background-color: #2a2b2a;
  color: White;
  font-family: Comic Sans MS, Comic Sans, cursive;
}


/* links format */
a {
  color: #f3d972;
  font-family: Courier, monospace ;     
  text-decoration: none;    /* Removes the underline */
  font-weight: bold;
}


a:hover {
  color: #f5cd2e;
}

a:active {
  color: #cca300;         /* Color while clicking the link */
}

a {
  transition: color 0.2s ease; /* transition time between styles */
}


/* center image class */
.center-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* width: 50%; /*  controls image size */
}


/* block test */
.block {
  border: 2px solid #111111;  
  border-radius: 5px;     
  padding: 10px;            
  padding-top: 0px;
  background-color: #151515;
  color:  #a63c06;
  width: fit-content;       /* Optional: fits box to content */
  display: table;
  /* margin: 20px auto;        /* Optional: centers block horizontally */
}

.construction-banner {
  border: 0px solid #2a2b2a;  
  border-radius: 0px;     
  padding: 0px;            
  padding-top: 0px;
  background-color: #2a2b2a;
  color:  White;
  width: 100%;       /* Optional: fits box to content */
  display: table;
  margin: 20px auto;        /* Optional: centers block horizontally */
}


.grid-container {
  display: grid;
  grid-template-columns:  250px 1fr; /* 3 equal columns */
  gap: 40px; /* space between columns */
}

