* {
    box-sizing: border-box;
}

.homepage .banner-text {
    background: #000;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: .5rem 2rem;
    font-size: .8rem;
    letter-spacing: .02rem;
    box-shadow: 0 1px 0 #000;
}

.homepage .banner-info {
    background: #000;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.25rem;
    padding: .5rem 2rem;
}

.homepage .banner-featured {
    background: #000;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: .5rem 2rem;
    font-size: .8rem;
    letter-spacing: .02rem;
    box-shadow: 0 1px 0 #000;
}

.homepage .banner-text a:hover,
.homepage .banner-text a,
.homepage .banner-info a:hover,
.homepage .banner-info a,
.homepage .banner-featured a:hover,
.homepage .banner-featured a {
    text-decoration: none;
    color: #fff;
}

.homepage .banner-text a {
    font-size: 1.3rem;
}

.homepage .banner-info a {
    font-size: 1.1rem;
}

.homepage .banner-featured a {
    font-size: 1.1rem;
}

.homepage .banner-picture img {
    width: 100%;
}

.homepage .center-box {  
    justify-content: center;
    align-items: center;
    justify-items: center;
    align-content: center;
}

.homepage .featured-box {
    display: flex;
    flex-direction: row;
}

.homepage .featured-picture img {
    display: inline-flex;
    width: 19%;
    gap: 10px;
}


.homepage .categories-heading {
    font-weight: 400;
    letter-spacing: .05rem;
    line-height: 1.125;
    font-size: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}

.homepage .categories {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    align-items: flex-start;
}

.homepage .category {
    display: flex;
    width: 33.3%;
    text-decoration: none;
    margin: 0 0 2rem;
    flex-direction: column;
    justify-content: flex-end;
}

.homepage .category-link {
    min-height: 1px;
    padding: 10px;
}

.homepage .category-link img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.homepage .category h3 {
    text-align: center;
}

.homepage .category h3 a {
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height: 1.125;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
}

@media only screen and (max-width: 1200px) {
    .homepage .category {
        width: 33.3%;
    }
}

@media only screen and (max-width: 768px) {
    .homepage .category {
        width: 50%;
    }
}

@media only screen and (max-width: 600px) {
    .homepage .category {
        width: 100%;
    }
}