* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: #000;
}

.left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    color: #fff;
}

.right {
    padding: 10vh 5vw;
    width: 50%;
    color: #000;
    background: #fff;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

img {
    max-width: 200px;
}

ul {
    margin-top: 20px;
}

li {
    list-style: disc inside none;
}
