/* Version 2  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.varela-round-regular {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
} 

.wrapper {
    display: flex;
    height: 100vh;
    align-items: center;
    font-family: Varela Round;
    padding: 0 50px;
    height: 100vh;
    background-color: #f5fbff;
}
.left {
    display: flex;
    flex-direction: column;
}

.right {
    width: 60%;
}

.right img {
    width: 100%;
}

.left {
    width: 40%;
}

.albisoft-logo {
    max-width: 400px;
}

.albisoft-logo img {
    width: 100%;
}

h2 {
    font-size: 9em;
    color: #08619b;
    text-align: left;
    margin: 0;
    font-weight: bold;
}

h4 {
    font-size: 2.8em;
    color: #08619b;
    text-align: left;
    margin: 0;
    padding-bottom: 20px;
}

p {
    font-size: 1.3em;
    color: #738088;
}

a {
    text-decoration: none;
    background-color: #ea8b09;
    border: 2px solid #ea8b09;
    padding: 10px 40px;
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
    font-weight: 700;
    max-width: 150px;
    text-align: center;
    margin-top: 40px;
    font-size: 25px;
}
a:hover {
    background-color: #08619b;
    border: 2px solid #08619b;
    color: #ea8b09;
}

@media (max-width: 981px) {
    .wrapper {
        flex-direction: column;
        justify-content: center;
    }

    .left {
        order: 2;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    h4 {
        text-align: center;
    }

    p {
        text-align: center;
    }
}

@media (max-width: 540px) {
    h2 {
        font-size: 6em;
    }

    h4 {
        font-size: 1.5em;
    }

    .right {
        width: 100%;
    }
}