body {
    justify-content: center;
}

.box {
    background-color: mediumspringgreen;
    display: flex;
    width: 1200px;
    height: 250px;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.box2 {
    background-color: rgb(138, 43, 226);
    display: flex;
    width: 1200px;
    height: 250px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-around;
    margin: auto;
}

.box3 {
    background-color: rgb(127, 255, 212);
    display: flex;
    width: 1200px;
    height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
}

img {
    height: 130px;
    width: 90px;
}

#jag {
    align-self: flex-start;
    border-bottom: solid red 5px;
}

.mettal {
    border-bottom: solid yellow 5px;
}

.box3 div {
    display: flex;
    width: 300px;
    background-color: blue;
    justify-content: center;
    border: solid black 1px;
}

.box3 div img {
    padding-bottom: 5px;

}