body {
    box-sizing: border-box;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
}

.hero-section {
    display: flex;
    justify-content: space-around;
}

.container-left,
.container-right {
    width: 50%;
    padding: 30px 0 0 30px;
    margin-bottom: 50px;
}

article {
   padding-right: 30px;
   word-wrap: break-word;
}
h4 {
    color: orangered;
    text-transform: uppercase;
}

.btn {
    padding: 15px 25px;
    background-color: orangered;
    color: white;
    font-size: 1rem;
    font-weight: bolder ;
    text-transform: capitalize;
    border: 1px orangered solid;
    transition-duration: 1s;
    cursor: pointer;
}

.btn:hover {
    background-color: #ffffff;
    color: orangered;
}
   
.livingroom-photo {
    max-width: 100%;
}
span {
    color: orangered;
}

.zIndex {
    position: relative;
    left: 0;
    top: 0;
    z-index: -1;
}
.z-Index {
    position: relative;
    right: 70px;
    bottom: 20px;
}

.bottom-section {
    text-align: center;
    background-color: lightgray;
    width: 100%;
    height: 220px;
    padding: 25px;
}

footer {
    text-align: center;
    height: 80px;
    opacity: 0.6;
}

@media (max-width: 600px){
body{
    display: flex;
    flex-direction: column;
}

.hero-section  {
    flex-direction: column;
    margin: auto;
}

.container-left,
.container-right {
    width: 90%;
    padding: 15px;
    margin-bottom: 0;
}

.zIndex {
    position: relative;
    left: 80px;
    top: 100px;
    z-index: -1;
}
.z-Index {
    position: relative;
    right: 20px;
    bottom: 100px;
    margin-left: 20px;
}

 .bottom-section{
   width: 90%;
   margin-top: 50px;
}}