:root {
    --sec: #ba9666;
    --first: #D9716F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
}

body {
    background-color: #fff;

}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f8f3ed;
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}


section {
    padding: 1rem;
    margin: 0 auto;
    max-width: 1200px;
    overflow-x: hidden;
}

/*arrange the items in the header*/
header .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

html header .flex a {
    box-sizing: border-box;
    font-size: 125%;
}

/*styling the nav bar*/
header .navbar a {
    font-size: 2rem;
    padding: 0 1.5rem;
    color: #666;
}

header .navbar a:hover {
    color: var(--first);
}

header .icons a {
    font-size: 2.5rem;
    color: #333;
    margin-left: 1.5rem;
}

header .icons a:hover {
    color: var(--first);
}

/*styling thr bar for diff. screen*/
header #toggler {
    display: none;
}

header .fa-bars {
    font-size: 3rem;
    color: #333;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    cursor: pointer;
    display: none;
}


.wrapper {
    width: 100%;
    padding: 10px;
    margin-top: 3rem;

}

.container {
    max-width: 500px;
    height: auto;
    margin: 100px auto;
    background: #fff;
    padding: 20px 40PX 30PX;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 7px solid #d9716f;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1)
}

.title {
    color: black;
    font-size: 2em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
}

.input-form,
.section {
    margin-bottom: 7px;
}

.input-form,
.label {
    display: block;
    font-size: 1em;
    color: black;

}

.input-form .input {

    background: transparent;
    border: 2px solid black;
    width: 100%;
    padding: 10px;
    color: black;
    border-radius: 3px;
}

input[type=submit] {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5rem;
    ;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

input[type=submit]:hover {
    background: #d9716f;
    border-color: #d9716f;
}

.input-form .input:focus {
    border-color: #d9716f;

}

.btn1 {
    text-align: center;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


@media only screen and (max-width: 600px) {
    .cart-info p {
        display: none;
    }

}

/* media queries*/
@media (max-width:991px) {

    html {
        font-size: 55%;
    }

}

@media (max-width:768px) {

    header .fa-bars {
        display: block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0, 0, 0, .1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header #toggler:checked~.navbar {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a {
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: .1rem solid rgba(0, 0, 0, .1);
        display: block;
    }


}

@media (max-width:450px) {

    html {
        font-size: 50%;
    }

}