html, body {
  margin: 0;
  min-height: 100%;
  background: #07070b !important;
  color: #ffd6ee;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
}

body {
  padding: 35px;
}

.site-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr 190px;
  gap: 18px;
}

.left-column,
.right-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel,
.notepad {
  background: #141018;
  color: #ffd6ee;
  border: 2px solid #ff5db8;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 0 18px #ff5db8;
}

h1 {
  color: #ff5db8;
  font-size: 34px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px #ff5db8;
}

h2 {
  color: #ff78c7;
  margin-top: 0;
}

a {
  text-decoration: none;
}

a:hover {
  color: white;
  text-shadow: 0 0 10px #ff5db8;
}

.panel a {
  display: block;
  margin: 7px 0;
}

.notepad {
  min-height: 260px;
}

@media (max-width: 800px) {
  body {
    padding: 15px;
  }

  .site-grid {
    display: block;
  }

  .left-column,
  .center-column,
  .right-column {
    margin-bottom: 18px;
  }
}
.garden {
  position: relative;
  height: 430px;
  background: #132015;
  border: 3px solid #ff5db8;
  border-radius: 16px;
  box-shadow: 0 0 20px #ff5db8;
  overflow: hidden;
}

.animal,
.flower {
  position: absolute;
  font-size: 32px;
}

.animal {
  cursor: pointer;
  transition: 0.8s;
}

.chicken1 {
  left: 12%;
  top: 55%;
}

.chicken2 {
  left: 35%;
  top: 72%;
}

.dog1 {
  left: 60%;
  top: 45%;
}

.dog2 {
  left: 78%;
  top: 66%;
}

.f1 {
  left: 20%;
  top: 75%;
}

.f2 {
  left: 55%;
  top: 80%;
}

.f3 {
  left: 85%;
  top: 20%;
}
.animal {
  cursor: pointer;
  transition: all 2s ease;
}
.entries-page {
  margin: 0;
  min-height: 100vh;
background-image: url("images/me-background.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: Verdana, Arial, sans-serif;
  color: white;
}

.entries-cover {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-card {
  width: 420px;
  padding: 30px;
  text-align: center;
  background: rgba(0, 0, 0, 0.58);
  border: 2px solid white;
  box-shadow: 0 0 25px white;
  backdrop-filter: blur(4px);
}

.welcome-card h1 {
  color: white;
  text-shadow: 0 0 15px white;
}

.open-diary {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  text-shadow: 0 0 10px white;
}

.entry-section {
  padding: 80px 20px;
}

.photo-entry {
  max-width: 650px;
  margin: 0 auto 80px auto;
  padding: 28px;
  background: rgba(0, 0, 0, 0.68);
  border: 2px solid white;
  box-shadow: 0 0 22px white;
  color: white;
}

.photo-entry h2,
.photo-entry h3 {
  color: white;
  text-shadow: 0 0 12px white;
}

.photo-entry p {
  font-size: 18px;
  line-height: 1.7;
}

.blingee-strip {
  position: fixed;
  top: 20px;
  width: 90px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blingee-strip img {
  max-width: 90px;
  image-rendering: pixelated;
}

.left-strip {
  left: 15px;
}

.right-strip {
  right: 15px;
}

.back-home {
  position: fixed;
  bottom: 18px;
  left: 18px;
  color: white;
  text-decoration: none;
  text-shadow: 0 0 10px white;
}


































































