* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    transition-duration: 200ms;
}

body {
    background: #5A1F2A;
}

.ordersection {
    padding: 80px 20px 10px 20px;
    text-align: center;
}

.ordersection h2 {
    font-size: 4.1em;
    font-weight: 700;
    margin-bottom: 60px;
    padding-bottom: 45px;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 45px;
    
}

input,
textarea {
    width: 100%;
    background: white;
    padding: 17px;
    outline: none;

}



button {
    margin-left: auto;
    padding: 14px 28px;
}

input,
textarea,
button {
    border-radius: 5px;
    border: 1px solid #C8B8A8;
}

/* FOOTER FOR CONTACT PAGE */
:root {
    --scroll-color: #5A1F2A; 
    --text-color: white; 
}

.footer {
    background-color: #5A1F2A;
}

.footersection a {
    background-color: white;
    color: #5A1F2A;
}

.footersection a:hover {
    background-color:  #d2cfcc;
}
