header {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgb(120, 130, 221);
    color: #fff;
}

header > div {
    flex-grow: 1;
    margin-right: 155px;
}

header > img {
    margin: 10px;
    height: 125px;
    border: solid 2px #333;
    border-radius: 5px;
    object-fit: contain;
    transition: 0.5s ease-in-out;
}

header > img:hover {
    transform: scale(1.2);
}

header > div > *::selection {
    color: rgb(120, 130, 221);
    background: #fff;
}