* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('../img/siding_tile.jpg');
    background-repeat: repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 20px 40px 20px;
}

.banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.storefront-banner {
    max-width: 100%;
    height: auto;
}

.content-panel {
    background-color: #fef4b9;
    padding: 30px 40px;
    max-width: 620px;
    border-radius: 8px;
    box-shadow: 0px 5px 3px rgba(62, 6, 100, 0.9)
}

.content-panel p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

/* Responsive design */
@media (max-width: 768px) {
    .storefront-banner {
        max-width: 90%;
    }

    .content-panel {
        padding: 20px 25px;
    }

    .content-panel p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .storefront-banner {
        max-width: 95%;
    }
}