.info-block {
    display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 90vh;
}


.info-items {
    list-style: none;
    padding: 0;
    margin: 35px 20px 0 0;
    text-align: right;
    /*position: relative;
    z-index: 100;*/
}

.info-block .info-text p, .info-block a{
    /*font-family: "NyghtSerif", sans-serif;*/
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -1px;
    /*font-style: italic;*/
    color: #0a0a0a;
    text-decoration: none;
}

.info-block .title{
    font-family: "InterTight", sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    font-weight: 200;
    text-transform: uppercase;
}

.info-block li{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 15px;
}

.info-block .developed{
  margin: 0 20px 0 0;
  padding: 0;
}

.info-block .developed a{
    font-family: "InterTight", sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    font-weight: 200;
    text-transform: uppercase;
    font-style: normal;
}

@media screen and (max-width: 768px){
.info-block .title{
    font-size: 10px;
    order: 1;
    flex-basis: 100%;
  }

  .info-block .info-text p, .info-block a{
    font-size: 22px;
    order: 2;
  }

  .info-block li{
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }

  .info-block .info-text{
    flex-basis: 100%;
    order: 2;
  }

}