.page {
  max-width: 1050px;

}

.header {
  height: 200px;
}

.div-top {
  translate: 0 150px;
}
.container-page {
  display: grid;
  grid-gap: 6px;

  grid-template-rows: auto auto 1fr auto;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    "header header"
    "menu menu"
    "sidebar main"
    "footer footer";

  height: 950px;
  box-sizing: border-box;
}

header { grid-area: header; }
.menu { grid-area: menu; }
footer { grid-area: footer; }


/* --- MAIN SCROLLING --- */
main {
  grid-area: main;
  min-height: 0;
  background: var(--white);
  border: 4px ridge var(--white);
  border-radius: 10px;
}

.wrapper-diary {
  overflow-y: auto;
  height: 100%;
  box-sizing: border-box;
  background: url(/images/cloth-trq.png);
  border: 4px ridge var(--white);
  border-radius: 10px;
  padding: 10px;
}

.diary-border {
  border-width: 7px;
  border-style: solid;
  border-image: url(/images/border_a.png) 7 fill round;
  margin: 10px;
}

.diary-box {
  padding: 10px;
  box-sizing: border-box;
  background: url(/images/dots1.jpeg);
  border-radius: 10px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* --- SIDEBAR SCROLLING --- */
aside {
  grid-area: sidebar;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.sidebar-title {
  flex-shrink: 0;
}

.nav-side {
  flex-grow: 1;
  overflow-y: scroll;
  height: 400px;
}

.menu-box {
  display: flex;
  border: 4px ridge var(--white);
  border-radius: 10px;
  padding: 7px;
  background: url(/images/cloth-trq.png);
  gap: 15px;
  justify-content: center;
}

.player-border {
  border-width: 7px;
  border-style: solid;
  border-image: url(/images/border_a.png) 7 fill round;

}


#glenplayer02 {
position:relative;
top:0px;
left:5px;
display:flex;
z-index:99;
}
#glenplayer02 a {text-decoration:none;}

#glenplayer02 > div {
align-self:center;
-webkit-align-self:center;
}

.music-controls {
user-select:none;
-webkit-user-select:none;
width:13px;
font-size:18px;
cursor:pointer;
}

.playy, .pausee {
  color:var(--soft-pink);
  text-shadow: -1px 0 var(--hot-pink), 0 1px var(--hot-pink), 1px 0 var(--hot-pink), 0 -1px var(--hot-pink), 0 0;
}
.pausee {display:none;}

.sonata {
margin-left:10px;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-size:14px;
color:var(--soft-pink);
font-weight: bold;
text-shadow: -1px 0 var(--hot-pink), 0 1px var(--hot-pink), 1px 0 var(--hot-pink), 0 -1px var(--hot-pink), 0 0; /* color of music note symbol */
}

.labeltext {
margin-left:0px;
position: relative;
bottom:10px;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-size:14px;
color:var(--soft-pink);
font-weight: bold;
text-shadow: -1px 0 var(--hot-pink), 0 1px var(--hot-pink), 1px 0 var(--hot-pink), 0 -1px var(--hot-pink), 0 0;/* color of song title */
}



