* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  background: fixed url("../img/bg.jpg");
  background-position: center;
  background-attachment: cover;
}

.container {
  margin: auto;
  background: rgba(30, 23, 20, 0.9);
  width: 90%;
  max-width: 1500px;
  padding: 2em 12em;
  min-height: 40vh;
  min-width: 360px;
  position: relative;
}

.content {
  width: 70%;
  max-width: 1130px;
  margin: auto;
}

#logo-container {
  position: relative;
}

#logo {
  position: relative;
  top: 4em;
  z-index: 10;
}

#ivy {
  position: absolute;
  top: 0;
  left: 1em;
  width: 10em;
}

h1 {
  font: 72px "Bebas Bold", sans-serif;
  color: #fd9905;
  text-align: center;
  line-height: 76px;
}

h2 {
  font: 26px "Bebas Regular", sans-serif;
  color: #fefefd;
  text-align: center;
}

header {
  height: 250px;
  width: 100%;
  background: url("../img/wines.jpg");
  background-position: center;
  border-bottom: 4px solid #fd9905;
  min-width: 360px;
}

p {
  font: 16px "Helvetica", sans-serif;
  margin-top: 3em;
  text-align: center;
  color: #fefefd;
}

.highlight {
  color: #da0000;
}

@media only screen and (max-width: 1000px) {
  #logo {
    display: table;
    margin: auto;
    top: 0;
  }
}

@media only screen and (max-width: 500px) {
  #ivy {
    width: 5em;
  }
  .container {
    padding: 2em 7em;
  }

  h1 {
    font-size: 50px;
    line-height: 54px;
  }

  header {
    height: 150px;
  }

  #logo {
    height: 130px;
    padding: 10px 0;
  }
}