.capriola-regular {
  font-family: "Capriola", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*HTML tags*/

body {
  background-color: #e9b6ad;
  font-family:  capriola, sans-serif;
  text-align: center;
  color: #3d0d1d;
  scroll-behavior: smooth;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

hr {
  border: 0.0625em dotted #3d0d1d;
}

/*Classes*/

.alink {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

.collapsible {
  width: 70%;
  margin: auto;
  margin-bottom: 8em;
  display: none;
  overflow: hidden;
  text-align: left;
  opacity: 0;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
}

.content {
  max-width: 70%;
  margin: auto;
}

.copied-message {
  font-size: 0.75em;
  visibility: hidden;
  opacity: 1;
  transition-timing-function: ease-in;
}

.first-collapsed-elem {
  margin-top: 0px;
}

.icon {
  vertical-align: middle;
  height: 1.875em;
  width: auto;
}

.inline {
  display: inline-block;
}

.link-button {
  background-color: #F2E2D4;
  border-color: #F2E2D4;
  border-style: solid;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.875em;
  margin-bottom: 0.875em;
  padding: 1.125em;
  border-radius: 1.5em;
  width: 80%;
  max-width: 31.25em;
  transition: background-color 0.1s;
}

.link-button:hover {
  cursor: pointer;
  background-color: #f0ceb1;
}

.links-div {
  margin-left: 15%;
  margin-right: 15%;
}

.logo-main {
  width: 10em;
  height: auto;
  padding-top: 0.625em;
}

.p-spacing {
  padding-bottom: 12.5em;
}

.service-subsection {
  text-align: left;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease-out
}

.service-subsection-header:hover {
  color: #983F5F;
  cursor: pointer;
}

.service-subsection-header::after {
  content: '\002B';
  float: right;
}

.service-subsection-header, .active::after {
  content: '\2212';
}

.small-print {
  font-size: 0.75em;
}

.socials-div a {
  color: inherit;
  text-decoration: none;
}

.superscript {
  font-size: 0.6em; 
  vertical-align: super;
}


@media screen and (max-width: 800px) {

  hr {
    border: 0.05em dotted #3d0d1d;
  }

  .collapsible {
    width: 90%;
  }

  .content {
    max-width: 100%;
  }

  .link-button {
    margin-top: 0.66em;
    margin-bottom: 0.66em;
    padding: 1.1em;
    font-size: 1.3em;
  }

  .links-div {
    margin-left: 5%;
    margin-right: 5%;
  }
  .p-spacing {
    padding-bottom: 9.375em;
  }

}