@font-face {
  font-family: 'Lato';
  src: url('font/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Lato';
  src: url('font/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
}
body,html{
  font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: white;
}
.product-container {
    display: flex;
   padding-top: 13vh;
   justify-content: left;
    width: 100%;
  }
  @media (max-width: 640px) {
    .product-container {
     padding-top: 10vh;
    }
}

@media (max-width: 340px) {
  .product-container {
    padding-top: 8vh;
   }
}
  #product-image {
    width: 60vw;
    height: 60vh;
    margin: 20px;
    object-fit: cover;
  }

  .product-options {
    justify-self: right;
    margin: 20px;

  }


  .product-image-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
 

  .color-options,
  .image-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
  .color-options{
    justify-content: left;
    margin-left: 10%;
  }
  .image-options{
    object-fit: cover;
  }


  .color-box,
  .image-options img {
    width: 40px;
    height: 40px;
    margin: 10px;
    border: 1px solid gray;
    cursor: pointer;
  }
  .color-box{
    border-radius: 50%;
    border: 2px solid black;
  }

  .product-description {
    width: 50%;
    margin: 20px;
    text-align: center;
  }

  @media (max-width: 768px) {
    #product-image {
        width: 90vw;
      justify-self: center;
      margin-right: 5vw;
      margin-left: 5vw;
      }
    .product-container {
      flex-direction: column;
    }

   

    .product-options,
    .product-description {
      width: 80%;
      margin: 20px auto;
    }
  }