/**
.belanosima-regular {
  font-family: "Belanosima", system-ui;
  font-weight: 400;
  font-style: normal;
}

.belanosima-semibold {
  font-family: "Belanosima", system-ui;
  font-weight: 600;
  font-style: normal;
}

.belanosima-bold {
  font-family: "Belanosima", system-ui;
  font-weight: 700;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 700

.cabin-<uniquifier> {
  font-family: "Cabin", system-ui;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.caprasimo-regular {
  font-family: "Caprasimo", serif;
  font-weight: 400;
  font-style: normal;

    **/

:root {
  --open: linear-gradient(
    180deg,
    rgba(140, 245, 236, 1) 0%,
    rgba(130, 209, 221, 1) 15%,
    rgba(119, 169, 204, 1) 50%,
    rgba(130, 139, 218, 1) 85%,
    rgba(102, 110, 179, 1) 100%
  );
  --gradient: linear-gradient(
    180deg,
    rgba(102, 110, 179, 1) 0%,
    rgba(130, 139, 218, 1) 15%,
    rgba(119, 169, 204, 1) 50%,
    rgba(130, 209, 221, 1) 85%,
    rgba(140, 245, 236, 1) 100%
  );
} /**https://codepen.io/cinni/pen/Poaodoq**/

body {
  color: #000000;
  background: #fff9f3;
  font-family: "Cabin", sans-serif;
  font-size: 1rem;
}

a {
  color: #666eb3;
  font-weight: bold;
}

h1 {
  font-family: "Caprasimo", serif;
}

h2 {
  font-family: "Belanosima", system-ui;
}

a:focus {
  outline: 2px solid #16cf54;
}

/* hr code: https://stackoverflow.com/questions/35610251/style-hr-with-image/35610699#35610699 */

hr {
  background: url("https://jrstest.jadinerhinestudios.com/images/moon.svg")
    no-repeat top center;
  background-size: contain;
  display: block;
  height: 35px;
  border: 0;
  position: relative;
}

hr:before,
hr:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 3px dotted #666eb3;
  height: 2px;
  top: 18px;
}
hr:before {
  left: 0;
  right: 50%;
  margin-right: 20px;
  bottom: 8px;
}
hr:after {
  right: 0;
  left: 50%;
  margin-left: 2px;
}

blockquote {
  border-left: 2px solid #666eb3;
  margin: 0.1rem 0.5rem;
  padding: 1px 1rem;
}

/** top button **/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #666EB3; /* Set a background color */
  color: #D1F3F3; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #D1F3F3; 
  color:#666EB3; /* Add a dark-grey background on hover */
}

/* Main container; all content goes in here. */
.wrapper {
  margin: 2rem 30rem;
}

/* Top section with page title, optional description.*/
.header {
  padding: 0 0.25rem 0.70rem 0.25rem;
}

.page-content {
	max-width: 100%; 
	margin: 32px auto; 
	padding: 0.10rem 1.5rem 1rem 1.5rem; 
	background: linear-gradient(#666eb3 0px, #d1f3f3 100px);
}

/* .tabbed is the main container */
.tabbed {
  overflow-x: hidden; /* so we could easily hide the radio inputs */
  margin: 32px 0;
  padding-bottom: 10px;
}

.tabbed [type="radio"] {
  /* hiding the inputs */
  display: none;
}

.tabs {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  font-family: "Cabin", system-ui;
  color: white;
  border-bottom: 1px solid #ccc;
  background: linear-gradient(#666eb3 0px, #d1f3f3 100px);
}

.tab > label {
  display: block;
  margin-bottom: -1px;
  padding: 15px 15px;
  border: 1px solid #ccc;
  background: var(--gradient);
  color: #edf2ed;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab:hover label {
  border-top-color: #333;
  color: #2b2f56;
}

/* tab content is the text inside container */
.tab-content {
  display: none;
  color: #2b2f56;
}

/* As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit */
.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.tabbed
  [type="radio"]:nth-of-type(5):checked
  ~ .tabs
  .tab:nth-of-type(5)
  label {
  border-bottom-color: #fff;
  border-top-color: #b721ff;
  background: #D1F3F3; /*active one*/
  color: #666eb3; /*same as above*/
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.responsive {
  max-width: 100%;
  height: auto;
}

/* youtube */
.embed-container {
  min-width: 100%;
  min-height: 100%;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}

/*Text outside the box, at the bottom of the page.*/
.footer {
  font-size: 1em;
  text-align: center;
}

/* For narrower screens. */
@media (max-width: 1280px) {
  .wrapper {
    width: 80%;
    margin: 1.5rem auto;
    }
  }


@media (max-width: 800px) {
  .wrapper {
    width: 87%;
    margin: 1rem auto;
  }
}

/* Rearrange into column format for mobile. */
@media (orientation: portrait), (max-width: 750px) {
  .wrapper {
    width: 95%;
  }

  .header {
    padding-bottom: 1px;
  }
 

/* Alternate color scheme for browsers preferring dark mode. 
 * If you change the color scheme and don't care to maintain this,
 * just remove this media query section. */
@media (prefers-color-scheme: dark) {
  body {
    background: #141615;
    color: #6af155;
  }