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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color:white;
    color: black;
    overflow-x: hidden;
}

header {
    background:blue;
    color:black;
    padding: 1rem;  
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black ;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white     ;
    margin: 5px;
    transition: all 0.3s ease;
}


.hero {
    background: url('https://imgs.search.brave.com/uxAwORMqeo-zd2j0fGzuMY9bJQ05pY1LVC6UFQWEaOo/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly93YWxs/cGFwZXJjYXZlLmNv/bS93cC93cDIwMTU3/OTUuanBn') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.hero .btn {
    background: #f4b400;
    color: white;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #e59500;
}

.products {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.products h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    background-color: black;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: black;
}

.product-card {
    background: black;
    border: 1px solid blue;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    width: 250px;
}

.product-card img {
    max-width: 100%;
}

.product-card h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    font-size: 1.2rem;
    color: blue;
    background-color: black;
}

footer {
    padding: 1.5rem;
    background: #333;
    color: white;
    text-align: center;
}


@media(max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .product-grid {
        flex-direction: column;
        align-items: center;
        background-color: black;
    }
}

@media(max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}
*{
    margin: 0px;
    padding: 0px;
  }
  
  body{
    font-family: Ariel, Helvetica, sans-serif;
    background-color:(0, 0, 0);
    color: white;
    line-height: 1.6;
    text-align: center;
  }
  
  .container{
    max-width: 960px;
    margin: auto;
    padding: 0 30px;
    background-color: black;
  }
  
  #showcase{
    height: 300px;
  }
  
  #showcase h1{
    font-size: 50px;
    line-height: 1.3;
    position: relative;
    animation: heading;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    background-color: ;
  }
  
  @keyframes heading{
    0% {top: -50px;}
    100% {top: 200px;}
  }
  
  #content {
    position: relative;
    animation-name: content;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    background-color: black;
  }
  
  @keyframes content{
    0% {left: -1000px;}
    100% {left: 0px;}
  }
  
  
  
  .btn:hover{
    transform: rotateY(360deg);
  }
  
  @keyframes btn {
    0%{opacity: 0}
    100%{opacity: 1}
  }
   