body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background: linear-gradient(to right, #d8abb2, #ffe4e1);
    background-image: url(backg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    width: 500px;
    background: #efeeebe4;
    padding: 20px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(240, 235, 235, 0.2);
}

h1  {
    text-align: center;
    color: #2a2720;
}
h2 {
    text-align: center;
    color: #a39974;
}

label {
    display: block;
    margin-top: 10px;
}

input, select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #6d6a6a;
}

button {
    width: 100%;
    padding: 10px;
    background: #c7bca9e4;
    color: rgb(110, 105, 105);
    border: none;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #72726c;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #3d3939;
}

th {
    background: #54534b;
    color: white;
}

th, td {
    padding: 8px;
    text-align: center;
}