@font-face {
    font-family: orkney;
    src: url(Orkney/Orkney\ Light.ttf);
  }

  .header{
    text-align: center;
  }

  h1, h3, h5{
    font-family: orkney;
  }
	.column {
	  flex: 33.33%;
	 /* height: auto;*/
	  padding: 10px;
	  margin: 5px;
	 /* background-color: #cccccc;*/
	  text-align: center;
      align-items: center;
      justify-content: center;
	}
	.container {
	   display: flex;
	}	
    .button-x {
        appearance: none;
        background-color: transparent;
        border: 2px solid #1A1A1A;
        border-radius: 15px;
        box-sizing: border-box;
        color: #3B3B3B;
        cursor: pointer;
        display: inline-block;
       font-family: orkney; 
       font-size: 16px;
        font-weight: 600;
        line-height: normal;
        margin: 0;
        min-height: 60px;
        min-width: 0;
        outline: none;
        padding: 16px 24px;
        text-align: center;
        text-decoration: none;
        transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        width: 80%;
        will-change: transform;
      }
    
      .button-x:hover {
        color: #fff;
        background-color: #1A1A1A;
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
        transform: translateY(-2px);
      }
      
      .button-x:active {
        box-shadow: none;
        transform: translateY(0);
      }
      #album-cover{
        width: 400px;
        height: 400px;
        padding: 10px;
        background-color: #b9bbbb;
      }

      .custom-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        float: left;
      }
    
      .custom-play-pause-button {
        cursor: pointer;
        padding: 10px;
        background-color: transparent;
        color: #3B3B3B;
        border: 2px solid #1A1A1A;
        border-radius: 5px;
        font-family: orkney;
        font-weight: 600;
      }
    
      .custom-play-pause-button:hover {
        color: #fff;
        background-color: #1A1A1A;
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
        transform: translateY(-2px);
      }
    
      .custom-play-pause-button:active {
        box-shadow: none;
        transform: translateY(0);
        font-weight: 600;
      }
    
      .custom-progress-bar {
        width: 100%;
        height: 10px;
        background-color: #b9bbbb;
        margin-top: 5px;
        border-radius: 5px;
        overflow: hidden;
        
      }
    
      .custom-progress {
        height: 20%;
        background-color: #4a494d;
        border-radius: 5px;
        
      }
      .title {
        display: flex;
        justify-content: space-between; /* Adjust as needed */
      }



      .song-container {
        display: flex;
        flex-direction: column;
        /*align-items: center; */ 
      }

      #platforms{
        padding-top: 120px;
         }

    #players{

        padding-top: 100px;
        width: 80%;
        align-items: center;
        }
            
 #middle{
    text-align: center;
}
@media screen and (max-width: 600px) {
  .container {
    display: flex;
    flex-direction: column;
  }
  .container div:first-child {
    order: 1;
  }
  .container div:nth-child(3){
    order: 2;
  }
}