body {
    background: rgba(230,255,26,1);
    background: radial-gradient(circle, 
    rgba(230,255,26,1) 10%,
    rgba(255,64,26,1) 40%,
    rgba(77,204,255,1) 65%, 
    rgba(204,77,255,1) 90% 
    );
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
h1, h2, h3, h4 {
    font-family: 'Hanalei Fill', cursive;
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0px;
}
h3 {
    font-size: 1rem;
    margin-top: 0;
}

#myProgress {
    width: 100%;
    background: rgba(77,204,255,1);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
  
  #myBar {
    width: 0%;
    height: 30px;
    background-color: rgba(255,64,26,1);

    padding-left: 1em;
    font-family: 'Courier New', Courier, monospace;
    /* text-align: center; /* To center it horizontally (if you want) */
    line-height: 30px; /* To center it vertically */
    color: white;
  }

@media only screen and (min-width: 200px) { 
    h1 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1rem;;
    }
 }

@media only screen and (min-width: 375px) { 
    h1 {
        font-size: 4rem;
    }
    h3 {
        font-size: 2rem;
    }
 }

 @media only screen and (min-width: 768px) { 
    #hero {
        max-width: 768px;
    }
 }

