main {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px;
}

.main-title {
  margin-bottom: 10px;
}

.main-title h1 {
  font-size: 2.5rem;
}

.news {
    max-width: 1200px;
    margin: 0 auto;
}

.card_image img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    color: #00ffff;
    padding: 0.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid #00ffff;
    background: transparent;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards_item {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .cards_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .cards_item {
        width: 33.3333%;
    }
}

.card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card_content {
    padding: 1rem;
    background: #ffffff;
}

.card_title {
    color: #1b1b1b;
    font-size: 30px;
    /* font-weight: 700; */
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}

.card_text {
    color: #1b1b1b;
    font-size: 16px;
    /* line-height: 1.5; */
    margin-bottom: 1.25rem;
    /* font-weight: 400; */
}

.card_content div {
    font-size: 13px;
    color: #1b1b1b8c;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
