/* 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: white;
  color: black;
  font-family: Verdana;
}
.logo-container {
    text-align: center;
    margin: 15px auto 5px auto;
}

.vista-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* Soft web drop shadow to lift it slightly off your pure white background */
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.2s ease;
}

/* Subtle click-and-hover animation reminiscent of old Windows systems */
.vista-logo:hover {
    transform: scale(1.05);
    cursor: pointer;
}
