body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.company-name {
    font-family: Impact, sans-serif;
    font-size: 3em;
    letter-spacing: -1px; /* Simulates condensed effect */
}

.message {
    font-size: 1.2em;
    margin: 20px 0;
}

.pet-image {
    max-width: 100%;
    height: auto;
    max-height: 50vh; /* Limits height to 50% of viewport height */
}

.language-selector {
    margin-top: 20px;
}

button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
}