@font-face {
    font-family: worksans;
    src: url(/assets/fonts/WorkSans-Regular.ttf);
}
body{
    background-image: url('../img/background.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: rgba(248, 238, 255, 1);
}
.header p {
    display: inline;
    font-weight: 700;
    font-size: 56px;
}
.sss {
  margin-top: 180px;
  width: 600px;
  background-color: white;
  padding: 40px;
  padding-bottom: 16px;
  margin-inline: auto;
  border-radius: 16px;
}

.sss details {
  border-bottom: 1px solid white;
}

.sss details:last-child {
  border-bottom: 0;
}

.sss details[open] {
  padding-bottom: 24px;
}

.sss summary {
  color: #301534;
  font-weight: bold;
  list-style: none;
  background: url('../img/accordion-closed-icon.svg') right center no-repeat;
  padding-block: 24px;
  cursor: pointer;
}

.sss details[open] summary {
  background-image: url('../img/accordion-open-icon.svg');
}