
.tye_dye_mobile {
    background-image: url("https://storage.googleapis.com/jjk_webstore_v2/Ladies_Tye_Dye_Backpack_JokaJok.jpeg");
    width: 100vw;
    height: 90vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;


}

.tye_dye_overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .5);

    background: rgb(0,0,0);
    background: radial-gradient(circle, rgba(0,0,0,0.20) 40%, rgba(0,0,0,1) 100%);
}

.tye_dye_border_box {
    width: 96%;
    height: 88%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("/assets/tye_dye_border.svg");

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
}

.tye_dye_border_box h1 {
    color: var(--accent-color);
    font-family: var(--header-font);
    font-weight:300;
    font-size: 2em;
    text-align: center;
    padding: 1em 1.5em;
}
.tye_dye_border_box h1 small {
    font-weight: 200;
}

.tye_dye_border_box a {
    position: absolute;
    bottom: 0;
    right: 1em;
}

.tye_dye_border_box a img {
    width: 8.5em;
    height: 8.5em;
}

@media only screen and (min-width: 768px) {

    .tye_dye_mobile {
        display: none;
    }

}