body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
}

.site-header {
    background: #000;
    padding: 1rem;
    text-align: center;
    color: #fff;
}

.site-header-link {
    text-decoration: none;
    color: inherit;
}

.site-header-logo {
    width: 64px;
}

.site-header-name {
    font-family: 'Langar', cursive;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

.home-illustration {
    width: 40%;
    box-shadow: 5px 5px 5px #ccc;
    float: right;
    margin-right: 2rem;
}

.home-slide-image {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.products-listing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 2rem;
}

.products-listing-item {
    border: solid 1px #efefef;
    padding: 1rem;
    text-align: center;
}

.products-listing-image {
    width: calc(100% + 2rem);
    height: 310px;
    object-fit: cover;
    margin: -1rem -1rem 0;
}

.btn {
    display: inline-block;
    background-color: #efefef;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.btn:hover {
    background-color: #e0e0e0;
}

.btn-sm {
    padding: .3rem .5rem;
}

.btn-outline {
    background: transparent;
    border: solid 2px;
}

.btn-outline:hover {
    background: transparent;
}


.btn-success {
    background-color: #079822;
    color: #fff;
}

.btn-success:hover {
    background-color: #006913;
}

.products-listing-btn {
    margin-left: 50%;
    transform: translateX(-50%);
    min-width: 50%;
}

.single-product-header-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    padding: 2rem 0;
    border-bottom: solid 1px #efefef;
}

.single-product-image {
    width: 100%;
}

.single-product-sizes {
    margin: 2rem 0;
}

.review {
    border: solid 1px #ccc;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.review-star {
    color: rgb(255, 216, 21);
}

.site-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: solid 1px #ececec;
}

.banner {
    display: none;
    padding: 1rem;
    border: solid 1px #e0e0e0;
    margin-top: 1rem;
}

.banner-image {
    margin-right: 2rem;
    max-width: 150px;
}

.of-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000C0;
    display: none;
    justify-content: center;
    align-items: center;
}

.of-visible {
    display: flex;
}

.of {
    max-height: 90vh;
    max-width: 800px;
    text-align: center;
    color: #fff;
}

.of-image {
    max-width: 100%;
}