body {background-color: rgb(36, 36, 36);
}

a {
  color: rgb(0, 132, 255);
}

a:hover {
  color: rgb(174, 129, 247);
}

a:link {
  color: #ff0;
}

h3 {
  color: rgb(200, 200, 200);
}

h4 {
  color: rgb(200, 200, 200);
}

dt {
  color: rgb(200, 200, 200);
}


/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    color: white;
  }
  
  /* Bottom left text */
  .bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  
  /* Top right text */
  .top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  /* Bottom right text */
  .bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
  
  /* Centered text */
  .centered {
    font-size: xxx-large;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }