/* BASE CSS */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 62.5%;
}

/* CSS CHILDREN */

#header {
    background-color: red;
    height: 300px;
    display: flex;
    justify-content: space-between;
}

.header__product {
    font-size: 40px;
    text-align: center;
    color: black;
    margin: 100px;
}

.header__img {
    height: 300px;
}


.line__yellow {
    height: 5px;
    width: 100%;
    background-color: blue;
}

.line__red {
    background-color: red ;
    height: 5px;
    width: 100%;
}

.image {
    display: inline-block;
}

.image__children {
    width: 33%;
}

.add_img {
    display: flex;
    margin: 50px;
}

.add__img-cell {
    width: 70%;

}

.add__img-cell-text {
    font-size: 2rem;
    padding-right: 60%;
}

.add__img-botton {
    width: 30%;
    
}

.add__img-buttom-text {
    font-size: 2rem;
    color: yellow;
    background-color: blue;
}

.add__img-buttom-text:hover {
    font-size: 2rem;
    color: blue;
    background-color: yellow;
}
