body {
  background-image: url("images/newbackground2.jpg");
  color: rgb(5, 32, 2);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

p {
  font-family: cursive;
}

header {
  color: rgb(101, 189, 93);
  border: 30px solid transparent;
  padding: 15px;
  border-image: url("images/whitelace.png") 34 round;
  background-image: url("images/background.jpg");
  background-clip: padding-box;
  font-family: sofia,'Lucida Handwriting';
  text-align: center;
}

.topnav {
  margin-top: 10px;
}

.button-33 {
  background-color: #449e68;
  border-radius: 100px;
  color: rgb(233, 233, 233);
  cursor: pointer;
  font-family: cursive;
  padding: 7px 20px;
  font-size: 16px;
  border: 0;
  transition: all 250ms;
  margin: 5px;
}

.button-33:hover {
  background-color: aliceblue;
  color: #449e68;
  transform: scale(1.05) rotate(-1deg);
}

.border {
  display: block;
  margin: auto;
  width: 50%;
}

.main-wrapper {
  max-width: 960px;
  width: 100%;
  background: url("images/greeenrose.png");
  padding: 30px;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: 4px double #cfc;
}

/* Layout */
.content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 60px; /* ← INCREASED: this controls the space between the two boxes */
  padding: 40px 20px; /* adds breathing room around both boxes */
  flex-wrap: wrap;
}

.main-column {
  flex: 2;
  min-width: 300px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar {
 flex: 1;
  min-width: 220px;
  padding: 20px;
  border-radius: 12px;
}

.body_div, .int_div {
  padding: 15px;
  border: 25px solid transparent;
  border-image: url("images/whitelace.png") 34 round;
  background-image: url("images/plaingreen paper.jpg");
  background-size: cover;
  font-family: sofia;
  text-align: center;
}
.int_div{
  margin-bottom: 20%;
  min-width: 2.5in;
}
.body_div {
  width: 100%;
  margin-bottom: 20px;
}

hr {
  border-top: 3px dashed #046e24;
  margin: 10px 0;
}

.pet_pic_music {
display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px; 
}

.image-of-the-day {
  margin-top: 8%;
  background-image: url("images/poloroid.jpg");
  border: 2px solid #096b0e;
  padding: 10px 10px 0px 10px;
  width: fit-content;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  text-align: center;
}

.image-of-the-day img {
  max-width: 100%;
  border-radius: 4px;
}

.headergif {
  height: 0.3in;
  width: 0.3in;
}
.keylime{
  margin-top: 0%;
}
h1{
  margin-bottom: 0;
}
.spotify{
  width:100%;
}
.changelog_div{
font-family: sofia;
font-size: 15pt ;
color: #000000;
background-image:url("images/changelogbg.jpg") ;
background-size: cover;
}
.me{
  max-width:300px;
  width:100%;
  margin:auto
}
.image-caption{
  color:rgb(177, 206, 180);
  font-family: sofia;
  background-color: #26362b;
text-align:center;
}
.frame{
 margin-top: 8%;
  background-image: url("images/courdaroy.png");
  border: 4px solid #0e3810;
  padding: 10px 10px 0px 10px;
  width: fit-content;
  box-shadow: 4px 10px 8px rgba(0, 0, 0, 0.2);
  border-radius: 11px;
  text-align: center;
}
/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .sidebar {
    width: 100%;
  }

  .pet_pic_music {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  }

}