/* Profile page styles */

main h1.profile-h1{
  font-family:Arial, Helvetica, sans-serif;
  font-size: 5em;
  font-weight:500;
  text-align: center;
  line-height: 70%;
  color: #7e7e7e;
}

main h2.profile-h2{
  font-family: "Inter", 'Arial Narrow Bold', sans-serif;
  font-size: 3em;
  font-style: italic;
  font-weight:normal;
  color: rgba(224, 146, 255, 0.68);
  line-height: 70%;
  text-align: center;

}

footer p{
  font-family:Arial, Helvetica, sans-serif;
  font-size: small;
  color: #7e7e7e;
  text-align: center;
}

footer p.back-arrow{
  font-family: "Inter", 'Arial Narrow Bold', sans-serif;
  font-size: 1.5em;
  font-style: italic;
  font-weight:500;
  color:#7e7e7e;
  line-height: 70%;
}

footer p.back-arrow a{
  text-decoration: none;
  color:#7e7e7e;
}

footer p.back-arrow a:hover{
  color: rgb(170, 146, 255);
}

/* Showcase flexbox layout */
.container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width:100%;
    margin:0 auto;
  }

  .container .item{
    border: 1px solid rgba(126, 126, 126, 0.68);
    min-height:400px;
    min-width:45%;
    max-width:45%;
  }

  .container .item h3{
    margin: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:500;
    color: #7e7e7e;
  }

  .container .item h3 a{
    color: rgb(224, 146, 255);
    text-decoration: none;
  }

  .container .item h3 a:hover{
    color: rgb(170, 146, 255);
  }

  .container .item p{
    margin: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #7e7e7e;
  }

  .container .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* media queries */
  @media screen and (max-width: 900px){
    .container{
      flex-direction: column;
    }
    .container{
      align-content: center;
    }
    .container .item{
      max-width:90%;
      height:400px;
    }
  }

  @media screen and (max-width: 600px){
    main h1.profile-h1{
      font-size: 3.5em;
    }
    main h2.profile-h2{
      font-size: 2.5em;
    }
  }
