/* 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-color: #231e1e;
  color: #cfcfcf;
  font-family: century;
}

img {
  max-width: 100%; /* Ensures the image does not exceed the width of its container */
  height: auto;    /* Automatically adjusts the height to maintain the aspect ratio */
}

.align-left {
  margin-left: 300px;
}

.parent-container {
    position: relative; /* Establishes a positioning context */
    height: 100vh; /* Example: make container take full viewport height */
}

.bottom-image {
    position: absolute;
    bottom: 0; /* Aligns the bottom of the image with the bottom of the parent */
    /* Optional: for horizontal centering */
    right: 20%;
}