body {
    background-color: rgb(155, 155, 155);
    font-family:Arial, Helvetica, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-direction: row;
    border-color: black;
    border-width: 5px;
}

img {
    height: 200px;
    width: max-content;
}

.wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wrap .container {
    margin-left: auto;
    margin-right: auto;

    padding: 20px;
}

.v-gap {
    height: 50px;
}

h1 {
    font-size: xx-large;
}

.m-center {
    margin-right: auto;
    margin-left: auto;
}