body {
  margin: 0;
  font-family: 'VT323', monospace;
  background-color: #0f0f0f;
  color: #ff00ff;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  min-height: 100vh;
}

.diary-container {
  width: 90%;
  max-width: 800px;
  padding: 20px;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #00ff00;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

h1.glitch {
  font-size: 3.3rem;
  text-shadow: 0 0 15px;
}

.entries {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 500px; 
  overflow-y: auto;
  padding-right: 5px; 
}

.entry {
  background-color: #1a1a1a;
  border: 2px solid #ff00ff;
  border-radius: 6px;
  padding: 12px;
  text-align: left;
  box-shadow: 0 0 6px #ff00ff, 0 0 10px #00ffff;
  display: flex;
  flex-direction: column;
  align-items: left;
  font-size: 1.7rem;
}



.timestamp {
  font-size: 1.2rem;
  color: #00ff0d;
  margin-bottom: 5px;
  text-shadow: 0 0 3px;
}

.text {
  margin-bottom: 8px;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 2px, rgb(0, 0, 0);
  font-size: 1.5rem;
  
}

.stickers {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 6px;
}

.sticker {
  width: 35px;
  height: 35px;
  ;
}

footer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #00ff0d;
  width: 100%;
}

h2.entryname {
  margin: 1px 1px 1px 1px;
  text-shadow: 0 0 2px;
  text-align: center;
  font-size: 1.25rem;
  text-decoration: underline;
}

.subtitle {
  margin-top: -20px;
  font-size: 1.3rem;
  text-shadow: 0 0 3px;
  color: rgb(0,255,0);

}

