*,
html,
body {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #f6f6f6;
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}

.two-columns {
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('img/akimero.02.png');
    background-position: 100% 0%;
    background-size: cover;
}

.column-one {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding: 16px 64px;
    box-sizing: border-box;
    width: 50%;
}

.column-one img {
    width: 50%;
}

.column-one p {
    font-weight: 100;
}

.button {
    width: 73%;
    color: #575756;
    background: linear-gradient(to right, #1AC0C6, #FDFA66);
    padding: 0.6em 1.3em;
    font-weight: 800;
    font-size: 18px;
    border-radius: 0.4em;
    text-decoration: none;
    margin-bottom: 60px;
}

.button:hover {
    background: #f6f6f600;
    border: 1px solid #f6f6f6;
    color: #f6f6f6;
}

.button:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
}

@media (max-width: 767px) {
    *,
    html,
    body {
        font-size: 12px;
    }

    .two-columns {
        background-position: 30% 100%;
    }

    .column-one {
        width: 100%;    
        padding: 20px;
    }

    .button {
        font-size: 13px;
        font-weight: 700;
    }
}

@media (min-width: 768px) and (max-width: 912px) {
    
    .two-columns {
        flex-direction: column;
        background-position: 30% 100%;
    }

    .column-one {
        width: 100%;    
    }
}