body {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
}

.container {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50vh;
    gap: 40px;
}

.column {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 10px 11px 49px -11px rgba(0, 0, 0, 0.44);
    -webkit-box-shadow: 10px 11px 49px -11px rgba(0, 0, 0, 0.44);
    -moz-box-shadow: 10px 11px 49px -11px rgba(0, 0, 0, 0.44);
}

.column h1 {
    margin: 0;
    margin-bottom: 20px;
}

.column p {
    margin: 0;
    margin-bottom: 40px;
    line-height: 1.5rem;
}

.column a {
    padding: 12px 40px;
    background-color: #16a34a;
    border-radius: 100px;
    margin-top: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
