
body {
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: 'Kumar One', cursive;
}

.epoch {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: background-color 0.3s, color 0.3s;
}

.epoch:nth-child(even) {
  background-color: #ffbfc5;
  color: #fff7f3;
}

.epoch:nth-child(odd) {
  background-color: #fff7f3;
  color: #ffbfc5;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.image img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  margin-right: 30px;
}

.text h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.text p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.read-more {
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid currentColor;
  border-radius: 25px;
  color: inherit;
  text-decoration: none;
  font-size: 1em;
  font-family: 'Merriweather', serif;
  transition: background-color 0.3s, color 0.3s;
}

.read-more:hover {
  background-color: currentColor;
  color: #fff;
}
