body{
  background-image: url(#);
}
  .panel{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 11pt;
    width: 100%;
    max-width: 500px;
    background-color: silver;
  }
  .bblu{
    border: 3px solid blue;
  }
  .gbnf{
    border: 3px solid black;
  }
  .picarray2{
    display: grid;
    width: 80%;
    grid-template-columns: 1fr 1fr;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 5px;
  }
  .picarray2 img{
    width: 100%;
  }
  .name{
    width: 85%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .ball{
    width: 5%;
    vertical-align: text-top;
  }

  .flag{
    width: 15%;
  }
  .medals{
    display: grid;
    width: 80%;
    grid-template-columns: 25% 75%;
    justify-content: center;
    align-items: center;
    grid-column-gap: 1px;
    border: 5px outset #e6f2ff;
    background-color: black;
  }
  .medals img{
    width: 90%;
    border: 0;
    padding: 5px;
  }
  .footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 25px;
    width: 90%;
  }
  .left{text-align: left;}
  .right{text-align: right;}
@media only screen and (max-width: 415px) {
  .panel{
    width: 100%;
  }
}
