*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
img{
    width: 100%;
}
.container{
    padding: 0 20px;
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
/*========Header Style========*/
header{
    padding: 20px 0;
    box-shadow: 5px 0 5px gray;
}
/*=======Showcase Style=======*/
#showcase{
    margin-top: 20px;
}
#showcase .details{
    margin: 20px 0;
}

#showcase .details h1{
    color: #ed4d5e;
    font-size: 42px;
    margin-bottom: 10px;
}

#showcase .details p{
    color: #13174b;
    margin: 0px 0 20px;
}
#showcase .details p strong{
    font-size: 32px;
    color: #5e138a;
}
#showcase .details a{
    background-color: #800ef1;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
}
/*==========Order Box==========*/
.orderbox h2{
    font-size: 42px;
    margin-top: 20px;
}
.orderbox .pricebox{
    margin: 10px 0;
}
.orderbox .offprice{
    color: red;
    text-decoration:line-through;
}
.orderbox .price{
    font-size: 32px;
    color: green;
}
.orderbox img{
    width: 300px;
    margin-bottom: 20px;
}
.orderbox form{
    margin-top: 20px;
}
/*==========Specifications===========*/
#specification h2{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}
.specification{
    border: 1px solid gray;
    border-collapse:collapse;
    width: 100%;
}
.specification tr, .specification td{
    border: 1px solid gray;
    padding: 10px;
}
/*=========Order Box==========*/
.orderform{
    margin: 20px 0;
    padding: 20px 10px;
    border: 1px solid gray;
}
.orderform label{
    display: block;
    margin-bottom: 10px;
}
.orderform input{
    padding: 10px;
    margin-right: 20px;
    width: 100%;
    outline: 0;
}
.orderbox button{
    padding: 10px 20px;
    background-color: #13174b;
    color: #fff;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
}
.orderform #orderbtn{
    cursor: no-drop;
    background-color: #a1a1a1;
}
/*========Footer Style=========*/
footer{
    background-color: rgb(34, 34, 34);
    padding: 20px 0;
    margin-top: 30px;
}
.footer{
    text-align: center;
}
.footer .copyright{
    color: rgb(168, 168, 168);
}
.fmenu {
    display: flex;
    list-style-type: none;
    margin-bottom: 15px;
}
.fmenu a{
    text-decoration: none;
    padding: 10px 0px;
    color: #fff;
}