 body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4ede4;
    color: #5a432a;
    margin: 0;
    height: 100vh;
}
.nav{
    text-align: center;
    background-color: #bf9e66;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    position: relative;
}
.nav a{
    display: inline-block;
    text-decoration: none;
    color: #5a432a;
    padding: 16px;
}
.nav a:hover, .nav a.active{
    color: #8a6f45;
}
.logo{
  position: absolute;
  left: 10px;
}
.container{
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #bf9e66;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
h2 {
    color: #7f6234;
}
button, #downloadLink,::file-selector-button {
    background-color: #8a6f45;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
button:hover, #downloadLink:hover,::file-selector-button:hover {
    background-color: #a38456;
}
input, .container a {
    margin: 10px;
    font-size: 16px;
}
#downloadLink {
    display: none;
    text-decoration: none;
}

.file{
    color: #7f6234;
}
.footer{
    padding: 20px;
    text-align: center;
    background-color: #bf9e66;
    box-shadow: 8px 0px 8px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    width:100vw;
}