* {
margin:0;
padding:0;
box-sizing:border-box;
}

body {

background:black;
color:white;
font-family:'Montserrat',sans-serif;

}

/* HEADER */

.header {

position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
padding:20px 40px;
background:black;
border-bottom:1px solid white;
z-index:1000;

}

.logo {

font-weight:900;
font-size:24px;

}

.shop-label {

font-size:12px;
margin-left:10px;
opacity:0.6;

}

nav a {

color:white;
text-decoration:none;
margin-left:20px;

}

nav a:hover {

opacity:0.6;

}

/* HERO */

.hero {

height:40vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
margin-top:60px;

}

.hero h1 {

font-size:60px;
font-weight:900;

}

.hero p {

opacity:0.6;
margin-top:10px;

}

/* PRODUCTS */

.products {

padding:60px 40px;

}

.grid {

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
max-width:1200px;
margin:auto;

}

/* CARD STYLE (POKEMON STYLE RECTANGLES) */

.card {

border:1px solid white;
height:360px;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:0.3s;

}

.card:hover {

background:white;
color:black;
transform:translateY(-10px);

}

.card-image {

height:240px;
background:black;
border-bottom:1px solid white;

}

.card:hover .card-image {

background:white;
border-bottom:1px solid black;

}

.card-content {

padding:20px;

}

.price {

margin-top:10px;
opacity:0.7;
font-weight:600;

}

/* FOOTER */

footer {

padding:40px;
text-align:center;
border-top:1px solid white;
margin-top:40px;

}
