*{
    margin: 0;
    padding: 0;
    color: white;
}
nav{
    padding:0 20px;
    align-items: center;
    height: 75px;
    display: flex;
    justify-content: space-between;
    background-color: black;
    position: sticky;
    top: 0;
}
a{
    text-decoration: none;
}
.logo img{ 
    width: 150px;
}
.func li{
    list-style: none;   
}
.func ul{
    display: flex;
    gap: 30px;
}
.func ul li a::after{
    content: '';
    margin: auto;
    height: 2px;
    display: block;
    width: 0%;
    background:#f44336;
    transition: 0.3s ease-in;
}
.func ul li a:hover::after{
    width: 100%;
}
.btn{
    width: 200px;   
    height: 30px;
    display: flex;
    flex-direction:coumn;
    gap: 10px;
}
.btn a{
    font-family: arial;
}
.btn button{
    width: 50%;
    height: 100%;
    border-radius: 20px;
    color: white;
    background-color: red;
    border: 2px white dashed;
}
.btn button:hover{
    background: radial-gradient(red,black);
}
.container{
    background:linear-gradient(30deg,red 10%,grey 40%,black 90%);
    display: flex;
    height:100vh;
}
.image{
    margin:20% 50px;
}
.headings{
    margin:20%  50px;
}
.headings .btn{
    margin: 20px 0;
}
#down{
    height: 100vh;

}
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: red;
    height: 15vh;
}
.container12{
    margin:12px 0;
}
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        height: auto;
        padding: 10px;
        margin: 0 auto;
        text-align: center;
        gap: 10px;
    }

    .logo img {
        width: 120px;
        margin-bottom: 10px;
    }
    .func{
        text-align: center;
        align-items: center;
        margin: 0 auto;
    }
    .func ul {
        flex-direction: row;
        gap: 10px;
        font-size: 15px;
    }

    .btn {
        width: 50%;
        flex-direction: row;
        align-items: center;
    }

    .btn button {
        width: 80%;
    }

    .container {
        background:linear-gradient(110deg,red 10%,grey 40%,black 90%);
        align-items: center;
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 40px 10px;
    }

    .image .headings {
        margin: 20px auto;
    }

    .headings {
        font-size: 18px;
    }

    footer {
        height: auto;
        padding: 20px;
        text-align: center;
    }
    .buyNowBtn{
        width: 60%;
        justify-content: space-around;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px;
    }

    .func ul {
        gap: 10px;
    }

    
    @media (max-width: 480px) {
        .btn button {
            width: 100%; /* Full width on smaller phones */
        }
    }
    .headings {
        font-size: 16px;
    }
    
    .container {
        padding: 20px 5px;
    }
}
