
#header{
    background-image: url(/pictures/Norman_04n3.jpg);
}
.btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 291px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-left: 20px;
    float: left;
    padding: 0.1em 0em;
  }
  
  
  .btn-one {
    color: #FFF;
    transition: all 0.3s;
    position: relative;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .btn-one span {
    transition: all 0.3s;
    z-index: 5;
  }
  .btn-one::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.5);
    transform: scale(0.1, 1);
  }
  .btn-one:hover span {
    letter-spacing: 2px;
  }
  .btn-one:hover::before {
    opacity: 1; 
    transform: scale(1, 1); 
  }
  .btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.294);
  }
  .btn-one:hover::after {
    opacity: 0; 
    transform: scale(0.1, 1);
  }
  #composerInfo{
      position: fixed;
      top: 50%;
      left: 50%;
      width: 0%;
      height: 0%;
      z-index: 99999999;
      background: rgba(0, 0, 0, 0.3);
      visibility: hidden;
      transition: 0.4s;
      display: flex;
  }
  .composerBackground{
      margin: auto;
      float: left;
      width: 800px;
      height: 600px;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      background: rgba(255, 255, 255, 0.6);
      border-radius: 20px;
      text-align: center;
      color: rgb(51, 51, 51);
      font-family: 'K2D', sans-serif;
      line-height: 2;
      position: relative;
  }
  .closePieces{
      position: absolute; 
      bottom: 30px; 
      padding: 0.5em 1.2em;
      font-size: 1.2em;
      border-radius: 12px;
      border: none;
      background: rgba(255, 255, 255, 0.4);
      outline: none;
      cursor: pointer;
      transition: 0.4s;
      left: 50%; 
      transform: translateX(-50%);
  }
  .closePieces:hover{
      background: rgba(255, 255, 255, 0.3);
      transform: translateX(-50%) scale(1.2);
      border-radius: 200px;
      box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  }
  .repWrap{
      transition: 0.5s;
  }
  .repWrap:hover{
      transform: scale(0.95);
  }

.composerBackground div::-webkit-scrollbar{
	width: 12px;
	background-color: #ffffff7c;
    border-radius: 10px;
}

.composerBackground div::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}

  @media only screen and (max-width: 1080px) {
    .piecesP{
        font-size: 1em;
    }
  }