body {
    margin: 0%;
    background-color: rgb(220, 220, 220);
    font-family: sans-serif;
    font-size: 18px;
}

div.column-left {
    position: absolute;
    width: 40%;
    height:auto;
    left: 50%;
    top: 0px;
    text-align: center;
    padding: 18px;
    transform: translateX(-100%);
}

div.column-right {
    position: absolute;
    width: 40%;
    height:auto;
    left: 50%;
    padding: 18px;
}

img {
    border-radius: 5px;
    max-width: 100%;
}

h1 {
    font-size: 34px;
    font-weight:normal;
}

h2 {
    font-size: 24px;
    font-weight: normal;
}

@media (max-aspect-ratio: 1) {
    div.column-left {
        position: relative;
        width: 90%;
        left: 5%;
        padding: 0%;
        padding-top: 12px;
        transform: none;
    }
    
    div.column-right {
        position: relative;
        width: 90%;
        left: 5%;
        padding: 0%;
    }

    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
}