body {
    background-color: #c97777; /* Set background color */
    font-family: Arial, sans-serif; /* Set font family */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
.container {
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Add shadow */
    color: #000000;
  }
h1 {
    text-align: center;
    color: #333; /* Set title color */
  }
.subtitles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
.subtitle {
    cursor: pointer;
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s ease;
  }
.subtitle:hover {
    background-color: #f9f9f91f; /* Hover color */
  }
.text-box {
    display: none;
    padding: 10px;
    border-color: #8a8585;
    border-radius: 5px;
    margin-top: 5px;
    text-align: center;
  }
.heading1 {
    color: #000000;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;   
}