body {
    background-size: 80px;
    margin: 20px;
    padding: 0;
    font-family: Arial, sans-serif;
    zoom: 125%;
}
.blog-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 40px;
}

.comments {
    margin-top: 20px;
}
  
.comments-section {
    margin-top: 10px;
}

.comments .comment {
    margin-bottom: 10px;
}

.add-comment textarea {
    width: 100%;
    height: 50px;
}

h1 {
    text-shadow:
  -4px -4px 0 #000000,
  4px -4px 0 #000000,
  -4px 4px 0 #000000,
  4px 4px 0 #000000,  
  -2px 0 0 #000000,
  2px 0 0 #000000,
  0 2px 0 #000000,
  0 -2px 0 #000000; 
  }

#epilepsy-warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.warning-window {
    width: 300px;
}

.title-bar-controls button {
    cursor: default; 
  }

.music-player-bar {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #c0c0c0;
padding: 5px 10px;
border-bottom: 2px solid #000;
z-index: 9999;
}

.music-player-bar .button {
margin: 0 5px;
padding: 5px 10px;
font-family: 'MS Sans Serif', Arial, sans-serif;
font-size: 14px;
background-color: #fff;
border: 2px solid #000;
cursor: pointer;
}

.music-player-bar .track-info {
margin: 0 10px;
font-size: 14px;
font-weight: bold;
font-family: 'MS Sans Serif', Arial, sans-serif;
}

.music-player-bar .progress-slider {
width: 150px;
margin-left: 10px;
}

.music-player-bar button:hover {
background-color: #e0e0e0;
}

.music-player-bar .button:active {
background-color: #c0c0c0;
border: 2px inset #000;
}

/* Responsive layout for mobile */
@media (max-width: 600px) {
.music-player-bar {
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
}

.music-player-bar .track-info {
  margin: 5px 0;
}

.music-player-bar .button {
  padding: 8px 15px;
}

.music-player-bar .progress-slider {
  width: 80%;
}
}        