/* 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: #242c27;
  background-image: url(/scroller.gif);
  color: #d9eeef;
  font-family: Verdana;
}

.vertical-banner {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    height: 100vh;           /* Example: Makes banner fill the full viewport height */
    /* Add other banner styles like background-color, width, etc. */
    background-color: #477447;
    margin: 0px 18vw; /* 0px top/bottom, 20px left/right */
    overflow: hidden; /* Ensures the image doesn't overflow the container */
}

.banner-content {
    text-align: center; /* Ensures text inside is centered */
}

.home-banner {
    margin-top: 50px;
}

.home-button {
    position: absolute;
}

.home-drawing {
    text-align: left;
}

