body {
    background-color: white;
    min-height: 100%;
    width: 100vw;
    overflow: auto;
  }
  
  .content {
    width:85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
  
  ul {
    margin-bottom: 100px;
    list-style-type: none;
  }
  
  li {
    list-style-type: none;
  }
  
  img {
    max-width: 100%;
    max-height: 95vh;
  }
  
  .block {
    display: flex;
    justify-content: space-evenly;
  }
  
  .info-block {
    display: inline-block;
    margin-top: auto;
    margin-left: 30px;
  }
  
  .row-1 {
    max-width: 80%;
    display: flex;
    flex-direction: row;
  }
  
  .row-2 {
    width: 20%;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
  }
  
  .title {
    font-size: xx-large;
    margin-bottom: 10px;
    color: #0000009c;
  }
  
  .price {
    font-size: x-large;
    margin-bottom: 10px;
    color: #0000009c;
  }
  
  .sold {
    color: #d219199c !important;
  }
  
  .info {
    color: #0000008c;
    line-height: 1.3;
    width: max-content;
  }
  
  @font-face {
    font-family: 'MontserratRegular';
    src: url('fonts/Montserrat/Montserrat-Regular.ttf');
    font-weight: normal;
    font-style: normal;
  }
  
  @media (max-width: 600px) {
    ul {
      margin-top: 20px;
      margin-bottom: 40px;
    }

    img {
      max-height: none;
    }
  
    .block {
      display: block;
    }
  
    .row-1, .row-2 {
      width: 100%;
      max-width: none;
    }

    .row-1 {
      margin-left: auto;
      margin-right: auto;
    }
  
    .row-2 {
      margin-top: 10px;
      margin-bottom: 0px;
    }
  
    .info-block {
      display: flex;
      justify-content: space-between;
      margin: 0;
      width: inherit;
    }
  
    .title {
      font-size: revert;
    }

    .price {
      font-size: small;
      text-align: center;
    }
  
    .info {
      font-size: smaller;
      text-align: center;
    }

    .title, .price, .info {
      width: 30%;
    }
  }