/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #580303 0%, #d83218 100%);
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    width: 750px;
    padding: 20px;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

header img {
    margin-bottom: 30px;
    max-width: 100%;
    width: 300px;
}

footer p {
    margin-top: 20px;
    font-size: 0.8em;
    opacity: 0.7;
}

#tenant_name {
    font-size: 5rem;
    font-weight: bold;
    color: #f9c506;
    -webkit-text-stroke: thin;
    text-transform: capitalize;
}

