.cover {
    width: 28rem;
}
.flexbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 3rem;
    gap: 4rem;
}
.infoandcta {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50%;
}
.info {
    font-size: 1.6rem;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 3rem;
    min-width: 5rem;
}
.cta {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 9999px;
    font-weight: bolder;
}
