/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-image: url("https://images.freeimages.com/images/premium/previews/1877/18778379-happy-manager-at-a-grocery-store-produce-area.jpg");
    background-size: cover;
}

#btn1 {
    background-color: #000000; 
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    opacity: 0.6;
    transition: 2s;
    font-size: 16px;
    border-radius: 50px;
}

#btn1:hover {opacity: 1;}


.box {
    width: 50%;
    height: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid  #FFFFFF;
    background: linear-gradient(to bottom, #c16210, #c91515);
    text-align: center;
    border-radius: 30px;
    margin-top: 8%;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    color: inherit;
}

footer hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 10px;
    width: 80%;
    color: inherit;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: inherit;
}

textarea {
    resize: none;
}