* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  color: #f1f1f1
}

body {
  background-image: url('../images/page-bg.png');
  background-color: #2785A4;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
}

.main {
  padding-bottom: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%
}

.container {
  text-align: center;
  background-color: rgba(0,0,0,0.5);
  padding: 1em
}

.title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-family: 'Bowlby One SC', cursive;
  margin-top: 0;
  margin: 1em;
  font-size: 2em
}

.logo {
  height: 30vh;
}

.facebook {
  margin: 0;
  margin-top: 1em;
}

.link {
  margin: 0;
  padding: .5em 0;
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-family: 'Bowlby One SC', cursive;
}

.link img {
  height: 3vh;
  width: 3vh
}

.link a {
  color: white;
  text-decoration: none;
  margin-left: .5em;
  text-align: left
}

.footer {
  padding: .5em 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
  position: fixed;
  width: 100%;
  bottom: 0px;
  text-align: center;
}

@media screen and (max-width: 360px) {
  body {
    font-size: 13px
  }

  .container {
    width: 100%;
  }
}

@media screen and (min-width: 360px) {
  body {
    font-size: 13px
  }

  .container {
    width: 90%;
    min-width: 360px;
    max-width: 600px
  }
}

@media screen and (min-width: 1200px) {
  body {
    font-size: 15px
  }

  .container {
    width: 50%;
    max-width: 800px;
  }
}

@media screen and (min-width: 1600px) {
  body {
    font-size: 16px
  }

  .container {
    width: 33%;
    max-width: 1600px;
  }
}

@media screen and (orientation: landscape) {
  .title-block {
    flex-direction: row;
  }
}
