/* 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("images/pagebg.png");
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      font-family: 'Stick', sans-serif; color: white;
    }
    
      a {
       color: #fb87ff;
    }
    
/* Title window */
.title-box {
  width: 70%;
  margin: 40px auto;      /* centers the box */
  padding: 03px;
  font-family: 'underdog', sans-serif; font-size:24px;

  text-align: center;    /* centers the text */

  background: rgba(0, 0, 0, 0.333);
  border: 2px double #888;
  border-radius: 0px;
}

/* Content window */
.content-box {
  color:#dcd9d9;
  width: 70%;
  margin: 20px auto;
  padding: 25px;

  background: rgba(0, 0, 0, 0.25);
  border: 2px solid #666;
  border-radius: 10px;
  text-align:center;
}

/* Optional: center headings only */
.content-box h2 {
  text-align: center;
}


.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  width: 60%;   /* IMPORTANT */
}


.column {
  background: rgba(0, 0, 0, 0.22);
  padding: 0px;
  border-radius: 10px;
}


.race-entry {
  width: 70%;
  margin: 40px auto;
  background: rgba(0,0,0,0.65);
  padding: 30px;
  border-radius: 12px;
  text-align:center;
}

.race-title {
  text-align: center;
  font-size: 3em;
}

.race-stats dt {
  color: #8a8327;
  font-weight: bold;
}

.race-stats dd {
  margin-bottom: 10px;
}

.subrace h4 {
  color: #8f9e57;
}

.race-image {

  display: block;
  width: 480px;
  margin: 30px auto;
}
