* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

main {
    display: flex;
    width: 100%;
}

.left, .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.left {
    color: white;
    width: 60%;
    background-color: rgb(107, 5, 190);
}

.right {
    width: 40%;
    padding: 25px;
}

h1 {
    font-size: 33px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 22px;
}

p {
    font-size: 11px;
}