body {
    background: linear-gradient(to bottom, #5d5c93, #161c25);
}

header {
    background-color: transparent;
}

footer {
    background-color: transparent;
}

.belowH {
    width: 80%;
}

section h2 {
    margin: 0 0 20px 0;
}

h1 {
    font-size: 70px;
}

.secBg {
    background-color: transparent;
}

.secBg h2 {
    color: #F5F5F5;
}

.heroWrap {
    color: #F5F5F5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 550px;
    background-color: transparent;
}

.heroWrap h1, .heroWrap p {
    margin: 0;
}

.heroWrap p {
    text-align: center;
    width: 50%;
}

.catGrid {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.blogSec {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blogElem {
    display: flex;
    flex-direction: column;
    width: calc(50% - 5px);
    border-radius: 10px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}

.coverImg {
    display: flex;
    height: 250px;
}

.coverImg img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.blogSec a, span {
    color: var(--color-primary);
}

.textWrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.textWrap h3 {
    margin: 0;
}

.textWrap a {
    text-decoration: none;
}

.textElems {
    display: flex;
    flex-direction: column;
    gap: 5px
}

/* mobile */

@media (max-width: 1080px) {

}

@media (max-width: 810px) {
}

@media (max-width: 720px) {
    .blogElem {
        width: 100%;
        
    }
}

@media (max-width: 580px) {
    .heroWrap h1 {
        font-size: 50px;
    }
    
    .heroWrap p {
        width: 80%;
    }
}