body {
  background-color: #ffffff;
  direction: rtl;
  text-align: center;
  cursor: transparent;
}

.accordion {
  max-width: 900px;
  text-align: right;
  font-size: 0.7em;
}

.img1 {
  border: 2px dashed black !important;
  border-radius: 10px !important;
  margin-top: 1rem;
}
.text1 {
  text-align: center;
  margin-top: 1rem;
}

article {
  text-align: right;
  border: 2px solid #000000;
  padding: 0.5em;
  margin: 0.5em auto;
  border-radius: 10px;
  background-color: #ccdcfa;
}

label:hover,
input[type="radio"]:hover {
  cursor: pointer; /* Changes cursor to pointer on hover */
}

input[type="radio"] {
  appearance: none;
  position: fixed;
  top: -100vh;
  left: -100vh;

  & ~ div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    font-size: 1.5em;
  }

  &:checked ~ div {
    max-height: 700px;
  }
}
