body {
    width: 98vw;
    height: 98vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:10vh;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-image: url("../img/coffee-coffee-beans-roasted-grains.jpg");
    background-size: 250px 250px;
    background-repeat: repeat;
    color: white;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

.main {
    width:100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    font-weight: 500;
}

a {
    color: rgb(36, 164, 255);
    text-decoration: none;
}

header {
    width: 100%;
    height: fit-content;
    background: rgba(0, 0, 0, .75);
    position: fixed;
    top: 0;
    left: 0;
}

.headerContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.hcLogo {
    width: 33%;
    display: flex;
    flex-direction: row;
}

.meanbean {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.angryBean {
    width: 20%;
    display: flex;
    justify-content: center;
}

.mountainBrew {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.hcCell {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.hcFb {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.mainContainerLogo {
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

img {
    width: 50%;
    height: fit-content;
}

.mainContainerSpecialty {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.mainContainerHouse {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.maincontainerGourmet {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.panelHolders {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 15px;
}

.specialtyHeader {
    width: 100%;
    font-size: 3rem;
    text-align: center;
    margin: 15px 0;
}

.panelBox {
    width: 100%;
    max-width: 500px;
    background: black;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 6px 2px white;
    margin: 15px 15px;
}

.panelHeader {
    font-size: 1.25rem;
    text-align: center;
    margin-top: 15px;
}

.panelContent {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.imgpanelContainer {
    width: 50%;
}

.panelDescription {
    width: 50%;
    height: fit-content;
    min-height: 125px;
    margin: 15px 0;
    font-size: 1.125rem;
    text-align: left;
}

.panelFooter {
    text-align: center;
}

footer {
    width: 100%;
    height: fit-content;
    background: rgba(0, 0, 0, .75);
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 15px 0;
}

.footerContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.fcCell {
    width: 25%;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
}

.fcCopy {
    width: 50%;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.fcFb {
    width: 25%;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width:1450px) {
    .meanbean, .mountainBrew, .hcCell, .hcFb, .fcCell, .fcCopy, .fcFb {
        font-size: 1rem;
        text-align: center;
    }

    body {
        margin-top: 5vh;
        margin-bottom: 8vh;
    }

    .panelHolders {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .panelDescription {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width:900px) {
    .meanbean, .mountainBrew, .hcCell, .hcFb, .fcCell, .fcCopy, .fcFb {
        width: 100%;
        font-size: 1rem;
        text-align: center;
        margin: 5px 0;
    }

    body {
        margin-top: 15vh;
        margin-bottom: 15vh;
    }

    .hcLogo, .headerContainer, .footerContainer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    img {
        width: 75%;
        height: fit-content;
    }

    .specialtyHeader {
        font-size: 2rem;
    }

    .panelDescription {
        font-size: .8rem;
        text-align: left;
    }

    footer {
        display: none;
    } 
}