* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: large;
}

.story-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.story-content {
  flex: 1;
  background-color: #f5f5dc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-left: 100px;
}

.story-content h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 10px;
}

.story-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 1.2;
}

/* Read Story button */
.story-button {
  margin-top: 30px;
  padding: 14px 28px;
  background-color: #317039;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.story-button:hover {
  background-color: #224f28;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Right side with image */
.story-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .story-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  width: 180px;
  height: 100%;
  background: #f5f5dc;
  border-radius: 90% / 100%;
  z-index: 1;
} */

.logo {
  position: absolute;   /* place it at a fixed point */
  top: 20px;            /* distance from top */
  left: 63px;           /* distance from left */
  z-index: 1000;        /* make sure it’s above everything */
  position: absolute;
  top: 20px;
  left: 63px;
  z-index: 1000;
}

.logo img {
  width: 163px;
  height: auto;
}