/* Targets the .brand-name class and changes the text color */
.brand-name h5 {
    color: #121212 !important; /* Ensures text color is #121212 */
}

/* Since .brand-name is within a link, ensure link styles do not override */
a .brand-name h5 {
    color: #121212 !important; /* Ensures link text color is #121212 */
    text-decoration: none; /* Optional: Removes underline from links */
}

/* Optional: Define hover and focus states for the link for visual feedback */
a:hover .brand-name h5, a:focus .brand-name h5 {
    color: #121212 !important; /* Keeps link color #121212 even when hovered or focused */
    text-decoration: underline; /* Adds underline on hover/focus for feedback */
}

.store-buttons {
    padding-top: 40px;
}

.store-buttons img {
    height: 50px;
    width: auto;
}

.app-logo {
    height: 36px; /* Default height */
    width: auto;
}

.full-height {
    height: 100vh;
}
