@font-face {
    font-family: "Pina Colada";
    src: url("Pina_Colada_Creation.ttf") format('truetype');
  }

  body {
    background-color:#FFB340 ;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
    margin: 0px;
    animation: bg-color 20s ease infinite;
  }
  @keyframes bg-color {
    25% { background-color: #FCCC81; }
    50% { background-color: #FFB340; }
    100% { background-color: #8559A7 ; }
  }

  header {
    position: fixed;
    width: 100%;
    margin: 0;
  }
  
  body::-webkit-scrollbar {
    display: none;
  }
  
  * {
    margin : 0;
    padding : 0;
  }

  h1{
    font-family:"Pina Colada";
    text-align: center;
  }
  h2{
    font-family:"Pina Colada";
    text-align: center;
    text-decoration: none; 
  }
  
  
  
  p{
    font-family:"Pina Colada";
    text-align: center;
  }       
  .Plan{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }               
 
  .buttonmap {
    color: black;
    font-family:"Pina Colada";
    text-transform: uppercase;
    text-decoration: none;
    background: #FFB340;
    padding: 20px;
    border: 4px solid #FF8F28 ;
    display: inline-block;
    transition: all 0.4s ease 0s;
    }
    .buttonmap:hover{
    color: #ffffff;
    background: #8559A7 ;
    border-color: #8559A7;
    transition: all 0.4s ease 0s;               
  }     
                             
  h2:hover {
    color: #8559A7;
    text-shadow: 0 0 5px #FF8F28 ,
                0 0 25px #FF8F28,
                0 0 50px #FF8F28,
                0 0 100px #FF8F28;
  }
  h1 {
    transition: all 0.5s;
    -webkit-text-stroke: 4px #FF8F28;
    font-variation-settings: "wght" 900, "ital" 1;
    font-size: 120px;
    text-align: center;
    color: transparent;
    font-family:"Pina Colada";
    text-shadow: 10px 10px 0px #FFB340,
      20px 20px 0px #FF8F28,
      25px 25px 0px #E52623,
      45px 45px 10px #8559A7;
    cursor: pointer;
    
  }
  h1::after{  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -10px;
  left: -4px;
  transform: scaleX(0);
  box-shadow:
     0 5px 0 #E8476A,
    0 10px 0 purple;
  background: #FFA01B ;
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
  }
  h1:hover {
    font-variation-settings: "wght" 50, "ital" 0;
    text-shadow: none;
  }