body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #00b478; /* Kiwi-inspired green */
    font-size: 48px;
    margin-bottom: 10px;
}

p {
    color: #333;
    font-size: 18px;
    margin: 5px 0;
}

.kiwi-icon {
    position: relative;
    top: 41px;
    width: 100px;
    height: 100px;
    margin: 20px 0;
    border: 1px black solid;
}

button {
    background-color: #00b478;
    color: white;
    border: 1px black solid;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #009960;
}

.info {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}