html, body { width: 100%; height:100%; margin: 0; font-family: arial, sans-serif; font-size:100%;}

body { color:#efefef; background: linear-gradient(-70deg, #ff4814,#CC34EB,#37d445); background-size: 500% 500%; animation: gradient 5s ease infinite; }
    @keyframes gradient {
    0% {
        background-position: 20% 50%;
    }
    50% {
        background-position: 80% 50%;
    }
    100% {
        background-position: 20% 50%;
    }}


.underline {background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23efefef' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
  background-position: 0 100%;
  background-size: auto 6px;
  background-repeat: repeat-x;
  text-decoration: none; } 

.large {font-size: 11em;} 
.bold {font-weight: 600;}
.central {display: flex;
  justify-content: center;
  align-items: center; flex-direction: column; height:90%;}
.last {color: #efefef;}
.small {font-size: 0.85em; position: relative; padding:20px;}
.info { padding: 10px;}
a {color: #efefef;}
.bottom {  display: flex;
  justify-content: center;
  align-items: bottom; flex-direction: row; }
.infolink {content: '?';
    display: inline-block;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
    width: 1.8ex;
    height: 1.8ex;
    font-size: 1.8ex;
    line-height: 1.8ex;
    border-radius: 1.2ex;
    margin-right: 2px;
    padding: 1px;
    color: #efefef;
    fill-opacity: 0;
    border: 1px solid #efefef;
    text-decoration: none;}


   /* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 10px;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 100%;
  background-color: #555774;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 20px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left:10%;
}

.popup .popuptext2 {
  visibility: hidden;
  width: 100%;
  background-color: #555774;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 20px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
    left:-40%;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 45%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Popup arrow */
.popup .popuptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: 5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
  