.main-container {
  width: 100%;
  height: fit-content;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-top: 50px;
  margin-bottom: 50px;
}
.title-container p {
  font-size: xx-large;
  color: black;
  text-align: center;
}

.title-container {
}

.content-container p {
  text-align: right;
  background-color: var(--primary-color);
  width: 80%;
  padding: 30px;
  line-height: 50px;
  font-size: x-large;
  border-radius: 15px;
  direction: rtl;
}
.content-container {
  justify-content: center;
  width: 100%;
  display: flex;
}
.button-container {
  width: 100%;
  margin-block: 50px;
  justify-content: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .main-container {
    width: 100%;
    height: fit-content;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    margin-bottom: 50px;
  }
  .title-container p {
    font-size: x-large;
    color: black;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
  }

  .title-container {
  }

  .content-container p {
    text-align: right;
    background-color: var(--primary-color);
    width: 80%;
    padding: 20px;
    margin: 0;
    margin-top: 20px;
    line-height: 30px;
    font-size: medium;
    border-radius: 15px;
    direction: rtl;
  }
  .content-container {
    justify-content: center;
    width: 100%;
    display: flex;
  }
  .button-container {
    width: 100%;
    margin-block: 50px;
    justify-content: center;
    display: flex;
  }
}
