* {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0; padding: 0; list-style: none;
}


html {
  font-size: 18px;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  font-family: 'Work Sans', sans-serif;

  background-color: #F5E050;
  color: #555;

  font-size: 50px;
  font-weight: 500; 
}

h2{
  font-weight: 500;
  margin-bottom: 20px;
  max-width: 420px;
  margin: 0 auto 20px auto; 

  font-size: 24px;
}

strong{
  font-weight: 900;

}

#nice,
#notNice{
  display: none;
}


#nice.show,
#notNice.show{
  display: inline-block;
}

/* About */
section#about{
  display: none;
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;

  z-index: 420;
  background-color: #222;

  padding: 100px;
  color: #fff;
  text-align: center;    
  font-size: 36px;
}

section#about a{
  text-decoration: none;
  color: #F5E050;
}

/* Info */
a.about-toggle{
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 25px;
  text-decoration: none;
}