body {
  font-family: "Special Elite";
  font-size: 18px;
  background: #69425B url("") fixed; /*Replace with your own background*/
  margin: auto;
  padding: 10%;
  padding-top: 1em;
  padding-bottom: 1em;
	color: #F0D3E2
	}

a {
  color: #EC4F89;
  }
  
b, strong {
  color: #EE87AD;
  font-weight: bold;
  }
  
/* latin */
@font-face {
  font-family: 'Special Elite';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0ntnAOSA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*Main text section*/
  .nav { 
  column-span: all;
  background: #1F1B1D;
  border: 5px solid #EC4F89;
  overflow: auto;
  width: 100%;
  padding:15px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  }

  .main { 
  column-span: all;
  background: #1F1B1D;
  border: 5px solid #EC4F89;
  overflow: auto;
  width: 70%;
  padding:15px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  }
  
  .main-deco { 
  column-span: all;
  background: #1F1B1D;
  border: 5px solid #EC4F89;
  overflow: auto;
  height: 150px;
  width: 70%;
  padding:15px;
  margin: 0 auto;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  }
  
/*Prevent overflow of large images*/
.main img {
  max-width: 100%;
  height: auto;
  }
  
.buttons {
  list-style-type:none;
  padding:3px;
  border: 2px #EC4F89;
  margin:5px;
  margin-top:10px;
  margin-bottom:10px;
  }
  
/*Use with <li> for individual buttons.*/
.button { 
  text-align:center;
  border: 2px #EC4F89;
  background-color: #C83F78;
  padding: 10px;
  margin:5px;
  margin-top:10px;
  margin-bottom:10px;
  }


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

  
/*Tentative mobile support.*/
@media(orientation:portrait) {
    
  .main {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    }

  }