body {
    width: 90%;
    height: 100%;
    background: #09AB84;
}

.logo-row {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.logo-row img {
    position: absolute;
    left: 58%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .logo-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-row img {
        left: 0;
        transform: none;
    }
}