@charset "utf-8";

@media screen and (min-width: 767px) {
  main {
    display: flex;
    width: 100%;
    height: 500px;
    margin: auto;
    /* background-color:gray; */
    padding: 50px 0;
  }

  .portfolio {
    display: flex;
    width: 95%;
    height: 100%;
    /* background-color:blue; */
    margin: auto;
  }

  .portfolio ul {
    display: flex;
    /* flex-wrap: wrap; */
    width: 100%;
    /* background-color:yellow; */
    margin: auto;
    justify-content: space-between;
    gap: 10px;
  }

  .portfolio-content {
    display: flex;
    flex-flow: column;
    width: 40%;
    height: 90%;
    max-width: 500px;
    box-sizing: border-box;
    /* background-color:orange; */
    margin: auto;
    text-align:center;
  }

  /* .portfolio-content:nth-of-type(3),
  .portfolio-content:nth-of-type(4) {
    display: flex;
    flex-flow: column;
    width: 40%;
    height: 90%;
    max-width: 500px;
    box-sizing: border-box;
    background-color:orange;
    margin: auto;
  } */

  .portfolio .img-wrapper {
    height: 150px;
    margin: auto;
  }

  .portfolio-content img {
    width: 150px;
    height: auto;
    max-height: 150px;
    object-fit: cover;
    /* border-radius:50%; */
    /* border:1px solid black; */
  }

  .portfolio-content div:nth-of-type(2) {
    display: flex;
    flex-flow: column;
    text-align: center;
    margin-top:20px;
  }

  .portfolio-content span,
  .portfolio-content a {
    display: inline-block;
    font-size: 14px;
    /* width: 100%; */
    margin: auto;
    margin-top:10px;
    padding-bottom: 5px;
    /* background-color:green; */
  }

  .portfolio-link {
    /* display: inline-block; */
    display:flex;
    width:95%;
    height:100%;
    margin-top: 5px;
    /* padding:10px; */
    color: #0077cc;
    /* text-decoration: underline; */
    transition: color 0.3s ease;
    justify-content:center;
    align-items:center;
    border:2px solid #0077cc;
    border-radius:30pt;
  }

  .portfolio-link:hover {
    color: white;
    background-color:#0077cc;
  }
}

@media not screen and (min-width:767px) {
  main {
    display: flex;
    width: 100%;
    margin: auto;
    /* background-color: gray; */
    padding: 50px 0;
  }

  .portfolio {
    display: flex;
    flex-flow: column;
    width: 90%;
    /* background-color:blue; */
    margin: auto;
  }

  .portfolio ul {
    display: flex;
    flex-flow: column;
    width: 100%;
    /* background-color:yellow; */
    gap: 10px;
  }

  .portfolio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    /* background-color:orange; */
    gap: 10px;
  }

  .portfolio .img-wrapper {
    flex: 0 0 40%;
    height: auto;
  }

  .portfolio-content img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .portfolio-content div:nth-of-type(2) {
    flex: 1;
    text-align: center;
  }

  .portfolio-content span,
  .portfolio-content a {
    display: inline-block;
    font-size: 14px;
    width: 100%;
    margin: 0;
    margin-top:10px;
    /* background-color:green; */
  }

  .portfolio-content span {
    padding-bottom: 5px;
  }

  .portfolio-link {
    /* display: inline-block; */
    display:flex;
    /* width:200px; */
    /* height:100%; */
    margin-top: 5px;
    padding:10px;
    color: #0077cc;
    /* text-decoration: underline; */
    transition: color 0.3s ease;
    justify-content:center;
    align-items:center;
    border:2px solid #0077cc;
    border-radius:30pt;
  }

  .portfolio-link:hover {
    color: white;
    background-color:#0077cc;
  }
}