@font-face {
    font-family: "Metropolis";

    src: url("/assets/fonts/metropolis/Metropolis-SemiBold.otf")
      format("opentype"); /* Safari, Android, iOS */
  }
  @font-face {
    font-family: "MetropolisMed";

    src: url("/assets/fonts/metropolis/Metropolis-Medium.otf")
      format("opentype"); /* Safari, Android, iOS */
  }
  main {
    display: flex;
    width: 80vw;
    height: 80vh;
    margin: auto;
    background-color: white;
    border-radius: 15px;
    margin-top: 2em;
    justify-content: space-around;
    min-height: 600px;
    margin-bottom: 2em;
  }
  .side {
    width: 50%;
  }
  .smm {
    width: 30%;
  }
  .profile-picture-outbox {
    height: 10em;
    width: 10em;
    overflow: hidden;
    border-radius: 99999999px;
    margin-top: 5em;
    margin-left: calc(100% - 10em);
  }
  .profile-picture-obj {
    width: 100%;
  }
  .lgg {
    width: 70%;
  }
  .name-surname {
    font-family: "Metropolis", "Inter", sans-serif;
    font-weight: 600;
    font-size: 2.5em;
  }
  
  .role {
    margin-top: 1em;
    font-size: 1.2em;
    color: #888;
  }
  .txwr {
    margin-top: calc(5em);
    margin-left: 3em;
    display: flex;
    align-items: center;
    height: 10em;
  }
  .actions-title {
    font-family: "Metropolis", "Inter", sans-serif;
    font-size: 1.4em;
  }
  .miniapp-title {
    font-family: "Metropolis", "Inter", sans-serif;
    font-size: 1.4em;
    display: inline;
    margin-left: 1em;
  }
  .actions {
    margin-left: 3em;
    margin-top: 2em;
  }
  .mini-app {
    margin-left: 3em;
    margin-top: 2em;
    margin-right: 3em;
  }
  .miniapp-body {
    text-align: justify;
    color: #888;
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 0.9em;
    line-height: 1.5em;
  }
  .actions-button {
    background-color: #03b5aa;
    color: white;
    height: 3em;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 3px solid #03b5aa;
    padding-left: 2em;
    padding-right: 2em;
    border-radius: 100000px;
    margin-top: 1em;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .actions-button:hover {
    background-color: white;
    border: 3px solid #03b5aa;
    color: #03b5aa;
  }
  .back-button {
    display: inline;
    font-size: 1.4em;
    cursor: pointer;
  }
  .back-buttonb {
    display: inline;
    font-size: 1.4em;
    cursor: pointer;
  }
  .miniapp-txbx {
    border-radius: 9999px;
    border: 2px solid #03b5aa;
    padding: 1em;
    font-size: 0.8em;
    outline: none;
  }
  .textbox-divided {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .miniapp-btn {
    width: 100%;
  }
  .centertxt {
    text-align: center;
  }
  .app-hidden {
    display: none;
  }
  @media screen and (max-width: 600px) {
    main{
      display: block;
      height: auto;
      padding-bottom: 5em;
    }
    .smm{
      width: 100%;
    }
    .profile-picture-outbox{
      display: block;
      margin-left: 0;
      margin: 0 auto;
      margin-top: 3em;
    }
    .name-surname{
      font-size: 1.5rem;
    }
    .scltxt{
      font-size: 1rem;
    }
    .actions-button{
      height: auto;
      padding: 3%;
      padding-left: 10%;
      width: 100%;
      font-size: 0.8rem;
    }
    .textbox-divided{
      display: block;
    }
    .lgg{
      width: 100%;
    }
    .miniapp-txbx{
      width: 100%;
      margin-top: 1em;
    }
    .txwr{
      margin-right: 3em;
    }
    .miniapp-body{
      text-align: left;
    }
    .actions{
      margin-right: 3em;
    }
    .smm{
      padding-top: 1em;
    }
  }