.lowBanner {
    width: 100vw;
    height: 44vw;
    background-image: url("../img/lowBanner/IMG_4889.JPG");
    background-position: center;
}

body {
    /* overflow: hidden; */
    background-image: url("../img/landing/image2.jpg");
    background-position: center;
    background-size: contain;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85vh;
    padding-top: 100px;
}

.displ {
    display: flex;
    justify-content: center;
    align-items: center;
}

.display {
    widtH: 40%;
    box-shadow:2px  #e9e503;
    border: 2px dotted black;
    border-style: double;
    border-radius: 5px;
}

.contactBox {
    background-color: rgb(206, 192, 0);
    color: white;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.contactBox a {
  color: rgb(221, 107, 107);
  font-weight: bold;
}

.quoteBox {
    text-transform: capitalize;
    background-color: orangered;
    color: white;
    padding: .65vw;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 6px;
    margin-top: 10px;
    text-align: center;
}

.aboutBtn {
    border-radius: 4px;
    background-color: #fc8f00;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 32px;
    padding: 16px;
    width: 220px;
    transition: all 0.5s;
    cursor: pointer;
    margin-top: 18px;
    margin-right: 18px;
    margin-left: 18px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
  }
  
  .aboutBtn{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .aboutBtn:after {
    content: '»';
    position: absolute;
    opacity: 0;  
    top: 14px;
    right: -20px;
    transition: 0.5s;
  }
  
  .aboutBtn:hover{
    padding-right: 24px;
    padding-left:8px;
  }
  
  .aboutBtn:hover:after {
    opacity: 1;
    right: 10px;
  }

  .shopBtn {
    border-radius: 4px;
    background-color: #e9e503;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 32px;
    padding: 16px;
    width: 220px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 18px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
  }
  
  .shopBtn{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .shopBtn:after {
    content: '-»';
    position: absolute;
    opacity: 0;  
    top: 14px;
    right: -20px;
    transition: 0.5s;
  }
  
  .shopBtn:hover{
    padding-right: 24px;
    padding-left:8px;
  }
  
  .shopBtn:hover:after {
    opacity: 1;
    right: 10px;
  }

@media screen and (max-width: 600px) {
    .main {
        height: 60vh;
    }
}