body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    line-height: 1.6;
}


.header{
    background: rgb(131, 20, 20);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin: 50px auto;
    color: white;
    text-transform: capitalize;
}

input, select, button {
    width: 30%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background-color: #248e19;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;

}

button:hover {
    background-color: #13743f;
}
