body {
   background: url("images/bg.svg") #2C93A5 top left no-repeat;
   background-size: cover;
   display: grid;
   align-content: center;
   justify-content: center;
}

header {
    padding: 50px 0 20px 0;
}

section {
    display: flex;
    flex-direction: column-reverse;
    background: white;
    flex-wrap: wrap;
    align-content: center;
    border-radius: 8px;
}

@media (min-width: 820px) {
    section {
        flex-direction: row;
    }
}

.col-1 {
    display: flex;
}

img { 
    border-radius: 8px 0 0 8px;
}

.content {
    max-width: 284px;
    padding: 60px;
}

h1, h2, p {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    color: rgba(0,0,0,0.7);
}

h1 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

h2 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 56px;
    line-height: 150%;
}


button {
    appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-family: Roboto, 'Times New Roman', Times, serif;
    font-weight: bold;
    border-radius:  4px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    width: fit-content;
    min-width: 80px;
    z-index: 2;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 115%;
    width: 100%;
    min-width: 220px;
    letter-spacing: 0.3px;
}

button.primary {
    background-color: #1e49db;
    border: 2px solid transparent;
    color: #fff;
    margin-bottom: 16px;
}

button.secondary {
    background-color: #fff;
    border: 2px solid ;
    color: #1e49db;
}