body{
    background:#000;
    color:white;
    margin:0;
    font-family:Arial,sans-serif;
}

header{
    text-align:center;
    padding-top:30px;
    padding-bottom:10px;
}

.logo{
    width:1000px;
    height:auto;
    display:block;
    margin:0 auto;
}

.hero{
    text-align:center;
    padding:10px 20px;
}

.hero h2{
    font-size:50px;
}

.product{
    text-align:center;
    padding:100px 20px;
}

a{
    color:white;
    text-decoration:none;
    border:1px solid white;
    padding:15px 40px;
    display:inline-block;
    margin-top:20px;
    font-weight:bold;
    letter-spacing:2px;
    transition:0.3s;
}
a:hover{
    background:white;
    color:black;
}

.product-image{
    width:350px;
    max-width:90%;
    border-radius:10px;
}
.product-gallery{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:30px;
}
.price{
    font-size:22px;
    font-weight:bold;
    margin-top:15px;
}

.product-info{
    margin:25px auto;
    line-height:1.9;
    font-size:14px;
    letter-spacing:1px;
}

.description{
    max-width:500px;
    margin:20px auto 30px;
    line-height:1.8;
    color:#ccc;
}
.insta-btn{
    display:inline-block;
    margin-top:20px;
    color:white;
    text-decoration:none;
    border:1px solid white;
    padding:15px 30px;
    font-weight:bold;
    transition:0.3s;
}

.insta-btn:hover{
    background:white;
    color:black;
}
.about-section{
    text-align:center;
    padding:100px 20px;
}

.about-section p{
    max-width:600px;
    margin:20px auto;
    line-height:1.8;
    color:#ccc;
}
.insta-btn{
    display:block;
    width:200px;
    margin:50px auto;
    text-align:center;
}
@media (max-width: 480px) {

.logo{
    width: 320px;
}

.product-gallery{
    display:flex;
    flex-direction:row;
    justify-content:center;
    gap:20px;
}

.product-image{
    width:140px;
}

}

.product{
    padding: 50px 20px;
}

.product h3{
    font-size: 28px;
}

.product-info{
    font-size: 18px;
}

.description{
    font-size: 16px;
    padding: 0 20px;
}

}