body {
    font-family: Arial, sans-serif;
    margin: 0;
  }
.cover{
    width: 100%;
    height: 400px;
    img{
      width: 100%;
      height: 400px;
    }
  }
.about{
  border-bottom: solid 1px;
  width: 80%;
  margin-left: 10%;
  color: #34485a;
  padding-top: 2%;
  text-align: center;
  font-family: cursive;
  p{
    line-height: 25px;
    letter-spacing: 2px;
    padding-left: 3%;
    padding-right: 3%;
    font-size: small;
  }
}

/* -------------------product details---------------------- */
.productContainer {
  width: 100%;
  display: flex;
  padding: 5%;
  }
.sliderWrapper {
  overflow: hidden auto;
  scrollbar-width:none;
  width: 10%;
  height: 500px;
  .productPictures {
    display: grid;
    img {
      border-radius: 50%;
      border: solid 1px rgba(128, 128, 128, 0.445);
      margin-bottom: 5%;
      width: 80%;
      height: 100px;
        cursor: pointer;
      }
    }
  }
  .productView{
    width: 35%;
    border: solid 1px rgba(128, 128, 128, 0.445);
    height: 500px;
    img{
        width: 100%;
        height: 500px;
        filter: drop-shadow(0 50px 20px #0009);
    }
  }
  .productDiscription{
    margin-left: 5%;
    width: 35%;
    color: #34485a;
    strong{
      color: #34485a;
      font-size: medium;
      text-decoration: underline;
    }
    td{
      font-size: smaller;
      color: rgb(90, 89, 89);
    }
    #tableSpecs{
      margin-bottom: 3%;
      padding-bottom: 2%;
      line-height: 25px;
      td{
        letter-spacing: 2px;
        word-spacing: 3px;
      }
    }
    #textalign{
      text-align: right;
    }
    button{
        border-radius: 50%;
        border: solid 5px rgba(47, 49, 88, 0.836);
        width: 50px;
        height: 50px;
        margin-right: 3%;
        cursor: pointer;
    }
    button:active{
        border-color: rgba(189, 70, 70, 0.781);
    }
  }
  @media screen and (max-width: 1110px){
    .cover{
      height: 200px;
      img{
        height: 200px;
      };
    }
    .about{
      h1{
        font-size: large;
      }
      p{
        font-size: 70%;
        line-height: 20px;
      }
    }
    .productContainer{
      padding-top: 3%;
    }
    .sliderWrapper {
      width: 10%;
      height: 400px;
      .productPictures{
        img{
          width: 80%;
          height: 80px;
        }
      }
    }
    .productView{
      border: solid 1px;
      height: 400px;
      img{
      height: 400px;
        filter: drop-shadow(0 10px 3px #0009);
      }
    }
    .productDiscription{
      margin-left: 0%;
      font-size: small;
      padding: 1%;
      .swingchairDiscription{
        margin-left: 10%;
        }
      strong{
        font-size: 100%;
      }
      h3{
        text-align: center;
      }
      #tableSpecs{
        line-height: 20px;
      }
      .colors{
        text-align: center;
      }
      button{
        border: solid 2px #34485a;
        width: 25px;
        height: 25px;
      }
    }
  }
  @media screen and (max-width: 701px){
    .cover{
      height: 200px;
      img{
        height: 200px;
      };
    }
    .about{
      /* margin-top: 20%; */
      width: 90%;
      margin-left: 5%;
      padding: 0%;
      h1{
        font-size: small;
      }
      p{
        font-size: 50%;
        line-height: 10px;
      }
    }
    .productContainer{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding: 5%;
      padding-top: 3%;
    }
    .sliderWrapper {
      overflow: scroll;
      scrollbar-width: 90%;
      width: 40%;
      height: 300px;
      .productPictures{
        img{
          width: 70%;
          height: 80%;
        }
      }
    }
    .productView{
      border: solid 1px;
      margin-left: -70%;
      width: 150%;
      height: 300px;
      img{
        width: 100%;
        height: 300px;
        filter: drop-shadow(0 10px 3px #0009);
      }
    }
    .productDiscription{
      width: 170%;
      margin-top: 15%;
      margin-left: 0%;
      font-size: xx-small;
      padding: 1%;
      .swingchairDiscription{
        display: flex;
        margin-left: 10%;
        gap: 20%;
      }
      strong{
        font-size: 100%;
      }
      h3{
        text-align: center;
      }
      #tableSpecs{
        line-height: 10px;
      }
      .colors{
        text-align: center;
      }
      button{
        border: solid 2px #34485a;
        margin-left: 7%;
        width: 35px;
        height: 35px;
      }
    }
  }

  /* ----------------------------INFO--------------------------- */
   .social-links{
    color: whitesmoke;
    background-color: #34485a;
      a{
        color: whitesmoke;
      }
    .contact-links{
        :hover {
          color:rgb(177, 106, 0);
        }
    }
    .quick-links{
        :hover {
          color: rgb(177, 106, 0);
        }
      }
}

/* ----------------------footer------------------------------------ */
.terms{
    color: whitesmoke;
    background-color: rgba(44, 44, 44, 0.527);
    .social-icons{
        background-color: rgba(44, 44, 44, 0);
        :hover{
        color: rgb(177, 106, 0);
        }
      }
    footer{
        a{
            color: rgb(190, 188, 188);
        }
    }
}