:root {
    --blue: #4a5f80;
    --red: #cd4d4e;
    --lightgrey: #f5f5f6;
    --grey: #a2a2a2;
    --black: #181818;
    --white: #fff;
    --bg-blue: #e4e1fa;
    --bg-beige: #ece6df;
    --product-size: 93px;
}

html,
body {
    height: 50%;
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    scroll-behavior: smooth;
    padding-top: 3rem;
}

h1,
h2,
h3,
h4 {
    color: var(--red)
}

.screen {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.screen .row {
    border: 0px dotted #0313fc;
}

.screen .row.header {
    flex: 0 1 auto;
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 500;
}


.screen .row.content {
    flex: 1 1 auto;
    background-image: url(images/signal-2024-10-15-151645_012.jpegx);
    background-position: 50% 50%;
    background-attachment: fixed;
    /* margin-top: 5rem; */
    padding-bottom: 80px;
}

.screen .row.footer {
    flex: 0 1 40px;
    text-align: center;
    background-color: var(--bg-blue);
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.screen .row.header,
.screen .row.footer {
    background-color: var(--bg-beige);
}

.header-area {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    justify-content: center;
    overflow: scroll;
}

.header div {
    border: 0px solid red
}

.logo {
    padding: 0.5rem;
}

.title {
    flex-grow: 1;
    font-weight: bold;
    color: var(--blue)
}

.menu ul {
    margin-left: -1.5rem
}

.menu ul li {
    display: inline;
    margin-right: 1rem;
}

a {
    text-decoration: none;
    color: var(--red)
}

.row.footer img {
    max-width: 100%;
    vertical-align: middle;
}

/* #about,
#merch,
#gallery,
#conduct {
    padding-top: 5em;
} */

/* .about-text {
    padding-bottom: 13rem !important;
} */

#gallery {
    padding: 5rem 2rem;
    text-align: cenetr;
}

#gallery img {
    max-width: 100%;
}

.spacer {
    height: 5rem;
}

.center {
    margin: 0 auto;
    text-align: center;
}

#slideshow {
    width: 100%;
}

#about {
    background: var(--white);
    max-width: 50rem;
    margin: 0 auto;
    padding: 2rem;
}

.brands {
    text-align: center;
}

.brands img {
    max-width: 5rem;
    max-height: 2.6rem;
    padding: 4px;
    vertical-align: middle;
}

.categories {
    width: 100%;
    text-align: center;
}

.products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    justify-content: center;
}

.product {
    width: var(--product-size);
    /* height: calc(var(--product-size) + 2rem); */
    text-align: center;
    border: 0px solid red;
    vertical-align: bottom;
}

.product img {
    max-width: var(--product-size);
    max-height: calc(var(--product-size) - 0rem);
}


iframe {
    width: 100%;
    height: 30rem;
    margin-bottom: 20rem;
    ;
}

@media only screen and (max-width: 480px) {
    .header-area {
        flex-flow: column;
    }

    body {
        padding-top: 10rem !important;
    }

    .screen .row.content {
        /* margin-top: 11rem; */
        /* padding-bottom: 40px; */
    }

    .spacer {
        height: 12rem;
    }

    #merch {
        width: 100%;
        /* height: 8rem; */
    }
}