body {
  cursor: default;
  font-family: 'Roboto', sans-serif;
  padding: 0px;
  margin: 0px;
}

div.holder {
  position: relative;
  max-width: 300px;
  height: 250px;
}
div.holder div.big-texts {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;

  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;

  color: #221f1f;
}
div.holder div.big-texts div {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  padding: 0px 20px;

  text-align: center;
}
div.holder div.big-texts p {
  padding: 5px;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;

  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;

  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=00)';
  filter: alpha(opacity=00);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;

  font-weight: bold;
}
div.holder div.big-texts p.visible {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

#centered-logo,
#final-screen {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;

  background-color: #5aaabf;

  /*background-image: url('../images/shadow-blue.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 90%;*/
}
#centered-logo {
  /*background-color: transparent;
  background-image: url('../images/logo.png');
  background-size: auto 40%;*/
}
#menu {
  position: absolute;
  left: 0px;
  width: 100%;
  bottom: 40px;
  text-align: center;
}
#menu a {
  color: white;
  text-decoration: none;
  font-size: 12px;
  margin: 0px 5px;
  font-weight: bold;
}
#menu a img {
  vertical-align: middle;
  margin-right: 2px;
  width: 15px;
}
#menu a:hover {
  text-decoration: underline;
}

#menu {
  display: none;
}
#final-screen,
#centered-logo,
#menu a {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;

  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=00)';
  filter: alpha(opacity=00);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
#menu.visible {
  display: block;
}

#final-screen.visible,
#centered-logo.visible,
#menu a.visible {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
