body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c1c1c;
}

.hero-container {
    position: relative;
    text-align: right;
}

.hero-image {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 10%;
    right: 10%;
    transform: translate(-10%, -50%);
    text-align: right;
    color: white;
}

.hero-text h1 {
    font-size: 5rem;
    margin: 0;
}

.status-chip {
    margin-top: 20px;
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.status-chip.healthy {
    background-color: green;
    color: white;
}

.status-chip.unhealthy {
    background-color: red;
    color: white;
}
