.hero {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 30px 45px;
    display: flex;
    justify-content: center;
}

.hero-inner{
    max-width: 1200px;
    padding: 10px;
    margin: 0;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.hero, #footer {
    background-color:transparent;
    color: #f7f7f7;
}

.hero h1{
    font-weight: normal;
    font-size: 3.6rem;
    line-height: 1.1;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.18rem;
    line-height: 1.5;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.hero-button {
    background-color:#ede7f6;
    color:rgba(81, 45, 168, 1);
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.18rem;
    display: inline-block;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-out;
}

a.hero-button:hover{
    background-color:rgba(81, 45, 168, 1);
    color:#ede7f6;
}

#features {
    /* background-color:rgba(49, 27, 146,0.7); */
    color:#ede7f6;
    padding: 60px 15px;
    position: relative;
    overflow: hidden;
}
.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px,1fr));
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

article {
    background-color:rgb(30, 29, 32, 0.1);
    /* background-color:transparent; */
    color: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5); */
}

article:hover {
    transform: scale(1.15);
    box-shadow: 0 0 45px rgba(0,0,0,0.3);
}

article>h3 {
    color:rgb(215, 202, 245, 1);
    font-size: 1.5rem;
    font-weight:normal;
    margin: 0 0 0.67rem 0;
    text-transform: uppercase;
}

article p {
    margin: 0;
    line-height: 1.5;
}

article a {
    text-transform: capitalize;
    color:#ede7f6;
    text-decoration: underline dotted #ede7f6;
}

article p.date {
    font-size: 0.67rem;
}

footer p {
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
}