.main {
    max-width: 1600px;
    margin: 0 auto;
}

h1 {
    font-size: 1.5em;
    font-weight: 400;
    text-align: center;
    padding: 1em;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.btn {
    color: #ffffff;
    padding: 0.8rem 0;    
    border-radius: 6px;    
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    text-align: center;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.items {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;    
    justify-content: center;
}

.items_item {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .items_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .items_item {
        width: 33.3333%;
    }
}

.item {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content {
    padding: 1rem;
    background: linear-gradient(to bottom left, #2F5706 40%, #31A248 100%);
    background: linear-gradient(to bottom left, #260657 40%, #3142a2 100%);
}

.title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0px;    
    -webkit-animation: 1s slideInFromLeft;
    animation: 1s slideInFromLeft;        
}

.text {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
    -webkit-animation: 1s slideUp;
    animation: 1s slideUp;
}

