body {
    background: linear-gradient(to top right, #18C9FA4D 30%, #F4F6FD 70%);
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    width: 100vw;
    font-family: Source Sans Pro, sans-serif;
}

header {
    flex-shrink: 0;
    height: 10%;
}

p {
    color: #666666;
    margin: 0;
}

h1, h2 {
    color: #333333;
}
h1 {
    font-weight: 600;
    font-size: 3rem;
    line-height: 100%;
    letter-spacing: 0;
}

main {
    display: flex;
    flex: 1 0 auto;
    margin: 0 auto;
    height: 90%;
    width: 65%;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 40px;
}


a {
    text-decoration: underline;
    color: #2BCBDF;
    cursor: pointer;
}



footer {
    height: 10%;
    align-content: center;
    text-align: center;
}

.cards-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 32px;

    width: 100%;
    height: 261px;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.card {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 16px;

    width: 411px;
    background: #FFFFFF;
    border-radius: 8px;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
}