* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    height: auto;
    background-color: black;
    font-family: Helvetica;
}

header {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img{
width: 350px;
}

h1 {
    color:transparent;    
    font-size: 8vw;
    background: url(https://images.unsplash.com/photo-1518636693090-8407756ab88b?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-clip: text;
    text-shadow: 0px 10px 100px gold;
    text-align: center;
    }
    
    .h1{
        text-shadow: 0px 10px 100px gold;
        position: absolute;
        top: 30%;
        filter: blur(100px);
    }

    section{
        height: auto;
        color: white;
    }

    .pro{
        height: auto;
        padding: 5vw 15vw;
    }

    .pro-value{
        font-size: 25px;
        border-left: 8px solid gold;
        padding-left: 20px;
        color: #E1E1E1;
        margin-bottom: 4vmax;
    }

    .pro-name{
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 4vmax;
    }

    .pro-img{
        width:auto;
        padding: 2vw 5vw;
        }
        
        .pro-img img{
            width: 100%;
            border-radius: 10px;
    }

    .pro .buttons{
        display: flex;
        gap: 20px;
        padding: 2vw 0px 0px 5vw;
        flex-wrap: wrap;
    }

    .pro button{
        font-size:1.7vmax;
        padding: 5px 2vmax;
        background-color: transparent;
        color:#E1E1E1;
        border:solid 2px gray;
        /* box-shadow: 1px 1px 10px gold; */
        border-radius: 10px;
    }

    @media screen and (max-width:425px) {
        .pro-value{
            font-size: 20px;
        }
        .pro-name{
            font-size: 25px;
        }

        header img{
            width: 300px;
        }    

        .pro{
            padding: 10vw 0vw;
        }
    }