* {
    box-sizing: border-box;
}

body {
    font-family: "Anuphan", sans-serif;
    margin: 0;
    padding: 0;
}

a, a:visited, a:hover {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    background-color: transparent;
    line-height: inherit;
    cursor: pointer;
}

.logo {
    width: 9.375em;
    height: 0.8125em;
    margin-bottom: 3em;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.content,
.image {
    width: 100%;
    height: 50vh;
    display: flex;
    align-content: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image {
    background-image: url('/images/background.jpeg');
    background-position: center left 21%;
    background-size: cover;
    background-repeat: no-repeat;
}

h1 {
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.6875em;
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 1.75em 0;
}

a {
    display: flex;
    align-items: center;
    width: 20.625em;
    height: 2.625em;
    padding: 0 1.5em;
    border: 1px solid #767676;
    border-radius: 100px;
    text-align: left;
}

a:first-child {
    margin-bottom: 1em;
}

a img {
    display: inline-block;
}

a span {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1.3125em;
    letter-spacing: 0;
    text-align: center;
    color: #424242;
}

@media screen and (min-width: 768px) {
    .wrapper {
        flex-direction: row-reverse;
    }

    .content, .image {
        width: 50%;
        height: 100vh;
    }

    .logo {
        width: 280px;
        height: auto;
    }

    h1 {
        font-size: 18px;
    }

    .buttons {
        max-width: 90%;
    }

    .buttons a {
        width: 332px;
        max-width: 100%;
        height: 41px;
    }

    .buttons a span {
        font-size: 14px;
    }

    .content {
        justify-content: center;
        padding-top: 0;
    }
}

