@charset "utf-8";
/* CSS Document */
	p { 
        
      }
      .whiteDancing40 {
        color: white;
	    font-size: 35px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-family: Dancing Script;

      }
	  .blackDancing40 {
        color: black;
	    font-size: 40px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-family: Dancing Script;

      }
	 .greenDancing30 {
        color: #8E8A05;
	    font-size: 30px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-family: Dancing Script;
	    font-weight: bold;

      }

     .purpleDancing30 {
        color: #9726EC;
	    font-size: 30px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-family: Dancing Script;
	    font-weight: bold;

      }
      .white40 {
         color: white;
	    font-size: 40px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-weight: bold;
      }
      .white35 {
         color: white;
	    font-size: 35px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-weight: bold;
      }
	 .white30 {
         color: white;
	    font-size: 30px; 
		 text-decoration: none;
         line-height: 1.0em;
      }
	  .blue20 {
         color: black;
	    font-size: 16px; 
		 text-decoration: none;
         line-height: 1.0em;
		  text-align: left;
      }
	 .black30a {
         color: darkblue;
	    font-size: 25px; 
		 text-decoration: none;
         line-height: 1.0em;
         font-family: Arial;
         font-weight: bold;
      }

	 .left {
		  text-align: left;
		  font-size: 17px; 
		   color: #514F4F
	}	

 /**
     * Reset button styles
     * It takes some work to achieve a “blank slate” look.
     */
    button {
      padding: 0;
      border: none;
      font: inherit;
      color: inherit;
      background-color: transparent;
      /* show a hand cursor on hover; some argue that we
      should keep the default arrow cursor for buttons */
      cursor: pointer;
    }

    /**
     * Button component
     */
    .btn {
      /* default for <button>, but needed for <a> */
      display: inline-block;
      text-align: center;
      text-decoration: none;

      /* create a small space when buttons wrap on 2 lines */
      margin: 2px 0;

      /* invisible border (will be colored on hover/focus) */
      border: solid 1px transparent;
      border-radius: 4px;

      /* button size comes from text + padding, avoid height */
      padding: 0.5em 1em;

      /* make sure colors have enough contrast! */
      color: #FFFFFF;
      background-color: #9726FF;
    }

    /* old-school "down" effect on clic + color tweak */
    .btn:active {
      transform: translateY(1px);
      filter: saturate(150%);
    }

    /* inverse colors on hover */
    .btn:hover {
      color: #9626EC;
      border-color: currentColor;
      background-color: white;
    }

    /* Firefox: remove the inner border shown on focus */
    .btn::-moz-focus-inner {
      border: none;
    }

    /* make sure we have a visible focus ring */
    .btn:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.5),
        0 0 0 1.5px rgba(255, 105, 180, 0.5);
    }

    /* hide focus style if not from keyboard navigation */
    .js-focus-visible .btn:focus:not(.focus-visible) {
      box-shadow: none;
    }

/**
     * Floating Button to Top
font-family: inherit;
  font-size: inherit;
     */
body {
  
 font-family: "Poppins", sans-serif;
  font-size: 14px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color:  #49E3CE;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #9726FF;
}