@import url('https://fonts.googleapis.com/css?family=Open+Sans');

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 0 auto;
  background: #000 url('../img/bg.jpg') center center no-repeat;
  color: #fff;
}

.item {
  margin-bottom: 15px;
}

.link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
}

.logo {
  margin-right: 15px;
  max-width: 60px;
}

.text {
  font-size: 2rem;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  .logo {
    max-width: 100px;
  }
  .text {
    font-size: 4rem;
  }
}