/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS Reset End */

/* CSS Shoes Start */

* {
  box-sizing: border-box;
}

body {
  background-color: #2509e5;
  font-family: "Inter", sans-serif;
  margin: 40px;
}

.card {
  border-radius: 16px;
  justify-self: center;
}

.card_Product {
  width: 300px;
  background: #f42104;
  background: linear-gradient(16deg, rgba(244, 33, 4, 1) 1%, rgb(244 4 4) 51%, rgb(199 158 50) 99%);
}

.card_Product_Top {
  padding: 8px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.card_Product_Top img {
  width: 40px;
}

.card_Product_Top span {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.card_Product_Middle {
  color: #fff;
  padding: 8px;
}

.product_Title {
  font-weight: 400;
  text-transform: uppercase;
  margin: 16px 0;
}

.product_Description {
  font-size: 14px;
  font-weight: 300;
}

.product_Image {
  height: 200px;
  padding: 0;
  position: relative;
}
.product_Image img {
  width: 350px;
  border-radius: 16px;
  position: relative;
  left: 16px;
  bottom: 250px;
}
.product_Backdrop {
  color: #fff;
  font-size: 170px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  margin: 40px 0px;
  letter-spacing: 20px;
  opacity: 0.5;
  padding: none;
  overflow: hidden;
}

.card_Product_Bottom {
  background-color: #fff;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 16px 16px;
}

.btn {
  border-radius: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 12px 16px;
}

.btn:hover {
  background-color: #1c2eff;
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn_Primary {
  background-color: #fff;
  color: #1c2eff;
  padding: 8px 24px;
  border: 1px solid #1c2eff;
  position: relative;
  z-index: 2;
}
.card_Product_Bottom span {
  font-size: 12px;
  color: #b6b6b6;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}
