body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}

.click-box {
    width: 150px;
    height: 50px;
    background-color: lightblue;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    cursor: pointer;
    font-weight: bold;
}

.click-box:hover {
    background-color: dodgerblue;
    color: white;
}

button {
    padding: 10px 15px;
    margin: 10px;
    border: none;
    background-color: green;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: darkgreen;
}

input {
    padding: 10px;
    margin: 5px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
