* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "chopinscript";
  src: url(../fonts/CHOPINSCRIPT.TTF);
}

@font-face {
  font-family: "dearest";
  src: url(../fonts/DEAREST.NORMAL.TTF);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: 0;
  font-family: dearest;
}
body {
  background: var(--background);
  color: var(--text-color);
}

button:hover,
button:focus {
  cursor: pointer;
}

.main__content {
  width: clamp(400px, 100%, 960px);
  margin-inline: auto;
  /* font-family: sans-serif; */
  padding: 2rem;
}

.main__content__heading {
  /* margin-top: 2rem; */
  text-align: justify;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: crimson;
  text-align: center;
  flex: 1;
  font-family: chopinscript;
}

.main__content__highlights {
  display: grid;
  list-style-type: none;
  /* grid-template-columns: repeat(2, 1fr); */
  /* color: rgb(80, 0, 104); */
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-left: 0.5rem;
  padding-bottom: 1.5rem;
  /* text-decoration: underline; */
  text-underline-offset: 4px;
}

.main__content__highlights > li {
  padding: 24px;
  text-align: justify;
  letter-spacing: 1px;
  border: 0.5px solid rgb(164, 164, 164);
  box-shadow: 0 0 10px rgba(164, 164, 164, 0.623);
  border-radius: 8px;
  line-height: 1.3;
  margin-left: 0.5rem;
  margin-block: 1rem;
  /* color: rgb(74, 74, 74); */
  text-decoration: none;
  font-size: 14px;
  padding-left: 40px;
}

.main__content__highlights > li:hover,
.main__content__highlights > li:focus {
  box-shadow: -5px -5px 10px rgba(164, 164, 164, 0.623);
  cursor: pointer;
}

.main__content__subheading {
  margin-top: 1rem;
  color: rgb(0, 142, 199);
}

.back-button {
  position: fixed;
  border: none;
  background: rgb(64, 64, 64);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  top: 30px;
  left: 2px;
}

a:has(.back-button) {
  text-decoration: none;
  color: white;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: white;
}

.main__content__header {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .back-button {
    position: fixed;
    /* background: green; */
    left: 40px;
  }
}

@media screen and (min-width: 1260px) {
  .back-button {
    position: fixed;
    /* background: green; */
    /* left: -10%; */
  }
  .main__content__heading {
    /* margin-top: 2rem; */
    text-align: justify;
    letter-spacing: 5px;
    font-weight: 600;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: crimson;
    text-align: center;
    flex: 1;
    font-family: chopinscript;
  }
  button:hover,
  button:focus {
    cursor: pointer;
  }

  .main__content__highlights {
    display: grid;
    list-style-type: none;
    /* grid-template-columns: repeat(2, 1fr); */
    /* color: rgb(80, 0, 104); */
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-left: 2rem;
    /* text-decoration: underline; */
    text-underline-offset: 4px;
    padding-bottom: 2rem;
  }

  .main__content__highlights > li {
    padding: 24px;
    text-align: justify;
    letter-spacing: 1px;
    border: 0.5px solid rgb(164, 164, 164);
    box-shadow: 0 0 10px rgba(164, 164, 164, 0.623);
    border-radius: 8px;
    line-height: 1.3;
    margin-left: 2rem;
    margin-block: 0.5rem;
    /* color: rgb(74, 74, 74); */
    text-decoration: none;
    padding-left: 50px;
  }
}
