@import url('https://fonts.googleapis.com/css?family=Comfortaa|Open+Sans:400,600,700');

html, body {
  font-family: 'Open Sans', sans-serif;
  color: #222222;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#logo {
  width: 50%;
  height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  float: left;
  overflow: hidden;
}

#logo img {
  width: 150%;
  height: auto;
  position: absolute;
  top: -10%;
  left: -50%;
}

#info {
  width: 46%;
  height: 100vh;
  padding: 0 2%;
  float: left;
  display: table;
}

#content {
  display: table-cell;
  vertical-align: middle;
}

h1 {
  font-family: 'Comfortaa', cursive;
  font-size: 3.5rem;
  color: #8e154f;
  margin: 1rem 0;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 400;
  color: #8e154f;
  margin: 0.5rem 0 0 0;
}

h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: #222222;
  margin: 0 0 0.25rem 0;
}

h1 span {
  color: #97a0a6;
}

.highlight {
  font-size: 1.25rem;
  color: #8e154f;
}

#ordi {
  text-align: right;
  line-height: 1.5;
  width: 20rem;
}

#ordi .day {
  float: left;
  display: block;
}

h2, h3, p, #ordi {
  margin-left: 2rem;
}

.button {
  font-size: 1.25rem;
  line-height: 1;
  color: #8e154f;
  text-decoration: none;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  border: 2px #8e154f solid;
  border-radius: 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.button:hover {
  color: #ffffff; 
  background: #8e154f;
}

@media screen and (orientation: portrait) {

  html, body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  #logo {
    width: 80%;
    height: auto;
    margin-top: -15%;
    float: none;
  }

  #logo img {
    width: 120%;
    top: 0;
    left: -20%;
    position: relative;
  }

  #info {
    width: 100%;
    height: auto;
    float: none;
    padding: 0;
  }

  h1 {
    margin-left: 2rem;
  }

  .button {
    font-size: 1rem;
  }

  #ordi {
    width: 15rem;
  }
}