/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* MATCH YOUR IFRAME SIZE EXACTLY */
html, body {
  width: 1000px;
  height: 600px;
  overflow: hidden;
  font-family: sans-serif;
}

/* MAIN CONTAINER */
.webpage {
  width: 100%;
  height: 100%;
  background: #73AD21;
  padding: 20px;
}

/* FLEX LAYOUT */
.content {
  display: flex;
  height: 100%;
  gap: 20px;
}

/* LEFT SIDE */
.main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.main-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: left;
}

.main-text p {
  font-size: 18px;
  text-align: left;
}

/* RIGHT SIDE IMAGE */
.main-image {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-image {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* centered layout */
.content.centered {
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* vertical layout (for music list) */
.content.vertical {
  flex-direction: column;
  overflow-y: auto; /* only scroll inside this page if needed */
}

/* music list styling */
.music-list {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.blog-post {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid black;
}

.blog-post h3 {
  margin-bottom: 5px;
}