@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');

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

body {
  font-family: 'Itim', cursive;
  background-color: #f4f4f4;
}

header {
  background-color: #3e5c6e;
  color: white;
  padding: 20px;
  text-align: center;
}

header .logo h1 {
  font-size: 3em;
  margin-bottom: 5px;
}

header .logo p {
  font-size: 1.5em;
}

main {
  padding: 50px 10%;
}

.content {
  text-align: center;
}

.dialogue-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.dialogue-box h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #3e5c6e;
}

.dialogue {
  text-align: left;
  font-size: 1.2em;
  color: #333;
}

.dialogue p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.dialogue strong {
  color: #2c3e50;
}

footer {
  background-color: #3e5c6e;
  color: white;
  text-align: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
}

.save-btn-container {
  text-align: center;
  margin-top: 20px;
}

button {
  font-family: 'Itim', cursive;
  background-color: #3e5c6e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #2c3e50;
}

@media (max-width: 768px) {
  header .logo h1 {
    font-size: 2.5em;
  }

  .dialogue-box h2 {
    font-size: 2em;
  }

  .dialogue {
    font-size: 1em;
  }
}