@font-face {
  font-family: 'Proxima Nova';
  src: url('./fonts/proxima-nova/proximanova-bold-webfont.woff');
  src:
    url('./fonts/proxima-nova/proximanova-bold-webfont.woff') format('woff')
    url('./fonts/proxima-nova/proximanova-bold-webfont.ttf') format('truetype')
    url('./fonts/proxima-nova/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('./fonts/proxima-nova/proximanova-regular-webfont.woff');
  src:
    url('./fonts/proxima-nova/proximanova-regular-webfont.woff') format('woff')
    url('./fonts/proxima-nova/proximanova-regular-webfont.ttf') format('truetype')
    url('./fonts/proxima-nova/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('./fonts/proxima-nova/proximanovat-thin-webfont.woff');
  src:
    url('./fonts/proxima-nova/proximanovat-thin-webfont.woff2') format('woff2')
    url('./fonts/proxima-nova/proximanovat-thin-webfont.woff') format('woff')
    url('./fonts/proxima-nova/proximanovat-thin-webfont.ttf') format('truetype')
    url('./fonts/proxima-nova/proximanovat-thin-webfont.svg#proxima_nova_thinthin') format('svg');
  font-weight: 200;
  font-style: normal;
}

html, body {
    background: #FFFFFF;
    color: #212732;
    font-family: 'Proxima Nova';
    font-size: 20px;
    font-weight: 200;
    line-height: 30px;
    padding: 0;
    margin: 0;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: calc(var(--vh, 1vh) * 100);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

header {
    display: flex;
    align-items: center;
    height: 150px;
    margin-bottom: 50px;
    padding-left: 64px;
}

main {
    margin-bottom: 80px;
    margin-top: 50px;
}

main .container {
    display: flex;
    align-items: center;
    position: relative;
}

.content {
    max-width: 100%;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.logo-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    width: 100%;
}

.logo-header svg {
    width: 100%;
}

.logo-header span {
    font-weight: 200;
    padding: 16px 0 8px;
}

.migration-img {
    display: none;
    position: absolute;
    right: 0;
    width: 50%;
    z-index: 0;
}

h1 {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 55px;
}

.cta {
    align-items: center;
    border: 1px solid #212732;
    border-radius: 9999px;
    color: #212732;
    display: inline-flex;
    font-size: 12pt;
    font-weight: 400;
    height: 55px;
    line-height: 25pt;
    margin-top: 25px;
    padding: 0 25pt;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease;
    white-space: nowrap;
}

.cta:hover, .cta:focus {
    background: #88c22c;
    border-color: #88c22c;
    color: white;
}

footer {
    background-color: #212732;
    color: hsl(212, 7%, 35%);
    font-size: 16px;
    height: 280px;
    margin-top: auto;
    padding-top: 50px;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

footer svg {
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .content {
        margin: 0 auto;
        width: 80%;
    }
}

@media (min-width: 960px) {
    h1 {
        font-size: 48px;
        line-height: 54px;
    }

    .logo-header {
        flex-wrap: nowrap;
        justify-content: start;
        width: auto;
    }

    .logo-header svg {
        width: auto;
    }

    .logo-header span {
        padding: 8px 0 0;
        margin: 0 16px;
    }

    .migration-img {
        display: block;
    }

    .content {
        margin: 0;
        text-align: left;
        width: 50%;
    }

    main {
        margin: 100px 0 120px;
    }

    footer .container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    footer svg {
        margin-bottom: 0;
    }
}