/*@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;500;600;700&display=swap');

:root {
    --highlight-color: #878807;
    --secondary-color: #A18703;
}

html, 
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Signika Negative', sans-serif;
    font-weight: 300;
}

header {
    text-align: center;
}
header h1 {
    color: var(--highlight-color);
    font-weight: 400;
    font-size: 3rem;
}
header #logo {
    max-width: 200px;
}

main {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
main p,
main h2,
main h3,
main h4 {
    text-align: center;
}
#products-list {
    max-width: 80%;
    margin: 3rem auto;
}

.product-qty input {
    text-align: center;
    border: 1px solid #888888;
    border-radius: 2px;
}
.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-desc {
    text-align: left;
    max-width: 32rem;
}
#form-customer-details {
    max-width: 30rem;
    margin: 2rem auto;
}
/*#form-customer-details {
    display: flex;
    flex-direction: column;
    max-width: 30rem;
    margin: 0 auto;
}
/*#form-customer-details .form-group {
    display: flex;
    margin: 0.5rem;   
}
#form-customer-details .form-group label {
    flex: 2;
    font-weight: 500;
    text-align: left;
}
#form-customer-details .form-group input {
    flex: 5;
}
/**/
.btn.btn-primary {
    background-color: var(--highlight-color);
    border: none;
}
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    background-color: var(--secondary-color);
}

footer {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
}
