<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* { 
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

footer {
    color: #202520;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: #f1f1f1;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

header {
    height: 120px;
    display: flex;
    flex-direction: row;
    background-color: white;
    z-index: 9999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    align-items: center;
}

header .logo{
    align-items: center;
    text-align: left;
    padding-left: 20px;
    display: flex;
    flex-basis: 50%;
}

header .logo-img{
    height: 100px;
    margin-right: 20px;
}

header .header-text{
    text-align: right;
    padding-right: 20px;
    width: 50%;
}
.main-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 120px;
}
main {
    margin-top: 120px;
}

html,body {
    height: 100%;
    margin: 0;
}

h1{
    font-family: 'Work Sans', sans-serif;
    font-size: 20pt;
    margin-left: 20px;
    color: #202520;
    text-shadow: 1px 1px lightgrey;
}

hr{
    border: 1px solid #f1f1f1;
    width: 800px;
}

p{
   font-size: 12pt;
}

.banner-image {
    margin-top: 50px;
    width: 800px;
    padding:20px;
    height: auto; /* Ensures the image maintains its aspect ratio */
    border-radius: 5px; /* Adds rounded corners for a card-like feel */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Adds a subtle drop shadow */
    overflow: hidden; /* Ensures the image content respects the rounded corners */
}

.blank-div{
    height: 50px;
}

.button {
    border-radius: 4px;
    background-color: #1569C7;
    border: none;
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 20px;
    width: 200px;
    cursor: pointer;
    margin: 5px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.container{
    text-align: center;
}

.gallery{
    display: inline-block;
    width: 800px; 
}

.gallery img {
    width: 32%;
    height: auto;
    padding: 1px;
}

.shop-now{
    margin-top: 50px;
    margin-bottom: 50px;
    float: none;
}

.shop-now p{
    margin-top: 30px;
    margin-bottom: 30px;
}

.shop-now button{
    margin-bottom: 30px;
}

/*************************************************/
/*                 800px Devices                 */
/*************************************************/
@media screen and (max-width: 800px) {
    
    footer {
        font-size: 10px;
        height: 40px;
        align-items: center;
        justify-content: left;
        padding-left: 20px;
    }
    
    header {
        height: 50px;
    }

    header .logo{
        line-height: 30px;
    }
    
    header .logo-img{
        height: 50px;
    }

    header .header-text{
        line-height: 16px;
    }

    h1 {
        font-size: 14px;   
    }
    
    hr {
        width: 80%;
    }
    
    p{
        font-size: 10px;
    }
    
    .banner-image {
        display: none;
    }
    
    .button {
        font-size: 16px;
        padding: 20px;
        width: 140px;
        margin: 5px;
    }

    .gallery{
        width: 360px;
    }
    
    .gallery img {
        width: 60%;
        padding: 5px;
    }

    .shop-now{
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .shop-now p{
        margin-top: 15px;
        margin-bottom: 15px;
        padding-left: 10%;
        padding-right: 10%;
    }

    .shop-now button{
        margin-bottom: 15px;
    }
}</pre></body></html>