@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: .2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid white;
    outline: none;
    transition: .2s;
}

body {
    width: 100%;
    padding-inline:40px ;
}

#page-title{
    width: 100%;
    text-align: center;
}

.container{
    width: 70%;
    margin-inline: auto;
    display: flex;
}

.image-content button{
    width: 100%;
    margin-bottom: 5px;
}

.image-content img{
    margin-inline: auto;
}
#name{
    display: flex;
    justify-content: center;
    align-items: center;
}
#namebox{
    flex: 1;
    padding: 8px;
    margin: 5px;
}

#description, #proName, #proPrice, #type{
    width: 100%;
    padding: 8px;
    margin: 5px;
}

#myimg{
    height: 200px;
    border-radius: 10px;
}

button{
    padding: 8px;
    background-color: transparent;
    border: 1px solid #222;
    cursor: pointer;
    transition: .2s;
}

button:hover{
    background-color: #222;
    color: white;
}

#list{
    margin: 10px;
}

#list input{
    padding: 8px;
    width: 100%;
}
#list textarea{
    columns: 30;
    width:100%;
    flex: 1;
    padding-left: 8px;
}
#list div{
    display: flex;
    padding: 10px;
    border: 1px solid #222;
    border-radius: 20px;
    margin-bottom: 10px;
}

#list img{
    width: 250px;
    border-radius: 10px;
}

#list span{
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}


@media(max-width:700px){
    #list div{
        flex-direction: column;
    }

    #list img{
        width: 100%;
        margin-bottom: 10px;
    }
}