/* --- GENERAL --- */
body {
  background-color: #0d1a0d;
  background-image: url('Forest.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header {
  text-align: center;
  color: #39ff14; /* neon green text */
}

h1:hover {
  text-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14, 0 0 45px #39ff14;
  transition: text-shadow 0.3s ease-in-out;
}

/* --- NAVIGATION --- */
nav {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  word-spacing: 70px;
  padding: 10px;
  background-color: rgba(0, 20, 10, 0.9);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  border: 1px solid #39ff14;
  border-radius: 8px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

nav:hover {
  box-shadow: 0 0 10px 5px rgba(57, 255, 20, 0.8);
}

nav a {
  color: #b6ff9f;
  text-decoration: none;
  font-size: larger;
  font-weight: bold;
  text-shadow: 0 0 8px #39ff14;
}

nav a:hover {
  text-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14, 0 0 45px #39ff14;
  transition: text-shadow 0.3s ease-in-out;
}

/* --- LAYOUT --- */
.layout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 5vh auto;
}

.rectangle {
  position: relative;
  flex: 0 0 60%;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.85);
  background-size: cover;
  background-position: center;
  border: 2px solid #39ff14;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rectangle:hover {
  box-shadow: 0 0 20px 10px rgba(57, 255, 20, 0.8);
}

.sidebox {
  flex: 0 0 15%;
  height: 70vh;
  background-color: rgba(10, 25, 10, 0.9);
  border: 2px solid #39ff14;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

/* Hover glow on sideboxes */
.sidebox:hover {
  box-shadow: 0 0 15px 8px rgba(57, 255, 20, 0.8);
}

/* --- BUTTONS --- */
.gif-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #b6ff9f;
  cursor: pointer;
  font-size: 18px;
  font-family: inherit;
  text-shadow: 0 0 8px #39ff14;
  transition: text-shadow 0.3s ease-in-out, transform 0.3s ease;
}

.gif-button:hover {
  text-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14, 0 0 60px #39ff14;
  transform: scale(1.1);
}

.gif-button img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 10px #39ff14);
}

/* --- TEXT --- */
.iivari-content {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #b6ff9f;
  text-align: left;
  text-shadow: 0 0 8px #39ff14;
}

.iivari-title {
  font-size: 2em;
  margin-left: 3%;
  color: #39ff14;
  text-align: left;
  text-shadow: 0 0 12px #39ff14;
}

.iivari-text {
  font-size: 1em;
  margin-left: 3%;
  margin-right: 3%;
  color: #b6ff9f;
  max-width: 100%;
  text-align: left;
  text-shadow: 0 0 8px #39ff14;
}

/* --- PICTURE SLOTS (left box) --- */
@keyframes greenPulse {
  0% { box-shadow: 0 0 8px #39ff14; }
  50% { box-shadow: 0 0 20px #39ff14; }
  100% { box-shadow: 0 0 8px #39ff14; }
}

.picture-slot {
  border: 2px solid #39ff14;
  border-radius: 8px;
  width: 90%;
  height: 30%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 12px #39ff14;
  animation: greenPulse 2.5s ease-in-out infinite;
  overflow: hidden;
}

.picture-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* --- RIGHT BOX (matching soft pulsing neon effect) --- */
.right-box {
  animation: greenPulse 3s ease-in-out infinite;
}

.right-box .gif-button img {
  filter: drop-shadow(0 0 12px #39ff14);
  animation: greenPulse 3s ease-in-out infinite;
}

And the whole new css, dont chnage anything else