.logo {
    display: flex;
    height: 90vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    font-weight: 500;
    font-size: calc(7vw);
    text-transform: uppercase;
    position: relative;
    color: #000;
    animation: fadein 2s ease-in-out;
}

.logo strong {
    color: red;
}

.logo h4 {
    display: block;
    position: absolute;
    bottom: calc(465px);
    text-align: center;
    margin: 0 auto;
    animation: fadein 3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 2px;
    font-size: 1.2vw;
}

.red-dash {
    width: 32vw;
    height: calc(2vh - 5px);
    background-color: red;
    border: 5px solid red;
    position: absolute;
    animation: shorten 1s ease-in-out;
}

.about {
    width: 70%;
    margin: 0 auto;
    flex-direction: column;
    font-size: 1.25rem;
}

.about h3,
.featured-items h3 {
    text-align: center;
    margin: 0 auto;
    font-size: 2rem;
}

.about p {
    padding: 15px;
    line-height: 40px;
    text-align: justify;
}

.featured-items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.product-container-list {
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    text-decoration: none;
    list-style: none;
    text-transform: uppercase;
}

.product-container-list-item {
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
}

.product-photo {
    max-width: 350px;
    width: 100%;
    min-width: 250px;
    padding: 10px;
}

.empty {
    height: 0px;
    width: 375px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    
    .logo h1 {
        font-weight: 500;
        font-size: 11vw;
        text-transform: uppercase;
        position: relative;
        color: #000;
        animation: fadein 2s ease-in-out;
    }
    
    .logo h4 {
        display: block;
        position: absolute;
        bottom: 85px;
        text-align: center;
        margin: 0 auto;
        animation: fadein 3s ease-in-out;
        text-transform: uppercase;
        letter-spacing: 2px;
        word-spacing: 2px;
        font-size: 1.7vw;
    }
    
    .red-dash {
        width: 50vw;
        height: 1vh;
        background-color: red;
        border: 5px solid red;
        position: absolute;
        animation: shorten 1s ease-in-out;
    }
    
    .about {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
        font-size: 1.25rem;
    }
    
    .about h3,
    .featured-items h3 {
        text-align: center;
        margin: 0 auto;
        font-size: 2rem;
    }
    
    .about p {
        padding: 15px;
        line-height: 40px;
        text-align: justify;
    }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {...}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}