body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;  
    background-color: #f0f0f0;
    text-align: center;
    height: 100vb;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
label {
    display: block;
    margin-bottom: 5px;
}
input {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
}
button {
    width: 50%;
    padding: 10px;
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    margin-bottom: 20px;
}
.inputbottom {
    margin-bottom: 10px;
}

footer {
    margin-top: 20px;
}

footer p {
    margin-bottom: 5px;
    margin-top: 0;
    font-size: 12px;
}

.version {
    margin-top: 20px;
    font-size: 15px;
    font-weight: bold;
}

a{
    font-size: 15px;
    font-weight: bold;
    color: #0056b3;
}