html {
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: space-around;
}

body.light-theme {
  background-color: #151515;
}

body.light-theme .flidownWrapper h1 {
  color: #FFFFFF;
}

body.light-theme .flidownWrapper p {
  color: #FFFFFF;
}

body.light-theme .buttons .button {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

body.light-theme .buttons .button:hover {
  color: #151515;
  background-color: #FFFFFF;
}

.flidownWrapper {
  font-family: 'Roboto', sans-serif;
  width: 600px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
}

.flidownWrapper .flipdown {
  margin: auto;
}

.flidownWrapper .button {
  display: inline-block;
  height: 50px;
  box-sizing: border-box;
  line-height: 46px;
  text-decoration: none;
  color: #333;
  padding: 0 20px;
  border: solid 2px #333;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

.flidownWrapper .button:hover {
  background-color: #333;
  color: #FFF;
}

.flidownWrapper .button i {
  margin-right: 5px;
}
h1 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font: 300 2.25em "Lato";
  text-transform: uppercase;
}
h1 strong {
  font-weight: 400;
  color: #ea4c4c;
}

.welcoming{
  font-family: "Lato", sans-serif;
  font-weight: 200;
  margin-top: 40px;
  text-align: justify;
}

@media (max-width: 550px) {
  .flidownWrapper {
    width: 100%;
    margin: 0;
    height: 362px;
  }

  .flidownWrapper h1 {
    font-size: 2.5em;
  }

  .flidownWrapper p {
    margin-bottom: 25px;
  }

  .flidownWrapper .buttons {
    width: 100%;
    margin-top: 25px;
    text-align: center;
    display: block;
  }

  .flidownWrapper .buttons p,
  .flidownWrapper .buttons a {
    float: none;
    margin: 0 auto;
  }

  .flidownWrapper .buttons p {
    padding-right: 0;
  }

  .flidownWrapper .buttons a {
    display: inline-block;
  }
}