body {
    background-color: rgb(199, 199, 199);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}
h1 {
    text-align: center;
    color: rgba(21, 113, 5, 0.6);
    text-shadow: 2px 2px 5px rgb(66, 89, 92);
}
input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(150, 150, 150);
    font-size: 16px;
}

button {
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background-color: rgba(21, 113, 5, 0.6);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: block;;
}
button:hover {
    background-color: rgba(21, 113, 5, 0.8);
}
#result {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    color: rgb(50, 50, 50);
}
#result.error {
    color: red;
}
#result.success {
    color: green;
}
select {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid rgb(150, 150, 150);
    font-size: 16px;
}
label {
    font-size: 16px;
    margin-right: 10px;
    color: rgb(50, 50, 50);
    display: block;
}
p {
    font-size: 16px;
    color: rgb(50, 50, 50);
}

img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
