main {
    display: flex;
    width: 65%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    display: flex;
    width: 100%;
    margin: 7em 0;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.left-header {
    display: flex;
    float: left;
}

.right-header {
    display: flex;
    width: max-content;
    float: right;
}

.right-header img {
    float: right;
}

.cards {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    margin: 10em 0;
}

.card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
    margin: 4em 0;
}

.card-item-text {
    display: flex;
    width: 50%;
    flex-direction: column;
}

.card-item-text h2 {
    margin: 0;
}

.card-item-text p {
    margin: 2 auto;
}

.card-item-image {
    display: flex;
    width: max-content;
}

.btn {
    font-size: 13pt;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
main {
    width: 100%;
}

.header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    justify-content: center;
    align-items: center;
}

.card-item-text {
    width: 95%;
    margin-top: 1em;
}

.card-item-image{
    max-width: 95%;
}

.card-item-image img {
    max-width: 100%;
}
}