body, html {
    margin: 0;
    padding: 0;
    background-color: cornflowerblue;
    font-family: Arial;
}

.names {
    background: none;
    background-color: cornflowerblue;
    text-align: center;
}

.top {
    background: none;
    position: absolute;
    width: 100%;
    top: 10%;
    text-align: center;
}

.split {
    background: none;
    height: 100%;
    width: 50%;
    position: fixed;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.centered img {
    width: 150px;
    border-radius: 50%;
}

textarea {
    resize: none;
}