@font-face {
    font-family: Maple;
    src: url(font/SuperMaples-2vR2w.ttf);
}


body {
    font-size: 20px;
    text-align: center;
    margin: 0;
    background-image: url(background/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDI0LTA1L3JtMTkyNS1jYS1lbGVtZW50LTA1LnBuZw.webp);
}
.container{
    max-width: 800px;
    background-color: bisque;
    margin: 0 auto;
    padding: 20px;
    border: 20px solid;
    border-image: url(background/yellow-black-square-checkered-check-flag-pattern-grid-texture-checkerboard-vector.jpg) 25 round;
}
.grid {
    display: flex;
    justify-content: space-around;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 50px;
 }
h1{
    font-family: Maple;
    font-size: 50px;
    color: navy;
}
.layout{
    display: grid;
    align-self: center;
    grid-template-columns: 1fr ;
    grid-template-rows: auto 80px auto 350px;
    gap: 5px;
    grid-template-areas: 
    "header header "
    "nav nav " 
    "main main"
    "footer footer";
}
header { grid-area: header; }
nav    { grid-area: nav; }
main   { grid-area: main; }
footer { grid-area: footer; }

header{
  background-image: url(background/yellowstars.gif) ;
}

.tab{
  background-image: url(Button.png);
  height: 40px;
  width: 160px;
  background-size: contain;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 2px black;
  color: white;
  transition: filter 0.2s;
}
.tab:hover{
    filter: brightness(120%);
}

.tab.active{
    filter:brightness(150%);
}

.music-box {
  position: absolute;
  top: 120px;
  right: 30px;

  width: 200px;
  padding: 12px;

  background-color: #BFAE99;
  border: 5px solid #537179;
  border-radius: 8px;

  color: #537179;
  font-family: monospace;
  text-align: center;
}

.music-box h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.album-art img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 8px;
}

.song-title {
  font-weight: bold;
  font-size: 13px;
}

.song-artist {
  font-size: 12px;
  color: #537179;
}

.player-ui {
  margin-top: 8px;
  font-size: 18px;
}

.player-ui span {
  margin: 0 6px;
  cursor: default; 
}
