.card {
    width: 90vw;
    padding: 20px;
    display: flex;
    background-color: var(--primary-blue);
    border-radius: 15px;
    justify-content: space-evenly;
    font-size: 20px;
    box-shadow: -3px 3px 5px 2px rgba(0,0,0,0.6);
    margin: 30px 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.half {
    width: 50%;
}

.info {
    padding-left: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reverse {
    flex-direction: row-reverse;
}

.reverse .info {
    padding-left: 20px;
    padding-right: 90px;
}