@font-face {
  font-family: 'Impact';
  src: url('impact.woff') format('woff'), url('impact.ttf') format('truetype');
}

html {
  font-size: 14pt;
  background-color: gray;
}

body {
  margin: 0;
}

/*  HEADER ---------------------------------------------------------------------------*/

.header {
  background-color: #ff5427;
  color: #fefce2;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  font-size: 5vw;
  line-height: 5vw;
  padding: 1rem;
}

@media (max-width: 600px) {
  .header {
    font-size: 1.4rem;
    line-height: 1.5rem;
    padding: 0.5rem;
  }
}

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

.header a:hover,
.header a:visited,
.header a:link,
.header a:active {
  text-decoration: none;
  color: inherit;
}

/*--------------------------------------------------------------------------------*/

.mainPage {
  background-color: #070422;
  padding-bottom: 2rem;
  position: relative;
  color: #fefce2;
  overflow: hidden;
}

.tap-header {
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
  text-align: center;
  padding-top: 2rem;
  color: #fefce2;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
}

@media (min-width: 601px) {
  .tap-header {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .tap-header {
    font-size: 1rem;
  }
}

.tapButton-wrapper {
  margin: auto;
  text-align: center;
  vertical-align: middle;
  display: table;
  border-spacing: 2rem;
  margin-top: -1rem;
}

/* TAP BUTTONS ----------------------------------------------------------------------*/

.tapButton {
  position: relative;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border-radius: 50%;
  background-color: #558a3c;
  color: #fefce2;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
  overflow: hidden;
  width: 10rem;
  height: 10rem;
  font-size: 1.5rem;
  line-height: 1.7rem;
}

/*@media (min-width: 601px) {
  .tapButton {
    
  }
}*/

@media (max-width: 600px) {
  .tapButton {
    width: 7rem;
    height: 7rem;
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

/*--------------------------------------------------------------------------------*/

.tapButton--depressed {
  background-color: #486f35;
  color: lightgray;
  pointer-events: none;
}

.tapButton:hover {
  color: #ffffff;
}

.glass-wrapper {
  position: relative;
  z-index: 1;
  background: #dddddd;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 40rem;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  border-top: 1px solid #ccc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 30px;
  padding-top: 5px;
  overflow: hidden;
}

.glass {
  background: #858577;
  border: 1px solid #bbb;
  border-top: 1px solid #eee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 40rem;
  /*height: 25rem;*/
  height: 50vw;
  max-height: 25rem;
  min-height: 17rem;
  position: relative;
  overflow: hidden;
}

.beer {
  background-image: url('beer.waves.png');
  position: absolute;
  bottom: 0px;
  width: 100%;
  max-width: 40rem;
  height: 2rem;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.beer--empty {
  height: 2vw;
  max-height: 2rem;
  background-position: top right;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

/* BEER IMAGE WHEN FULL -------------------------------------------------------------*/

.beer--full {
  background-position: top left;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

@media (min-width: 1001px) {
  .beer--full {
    height: 60vw;
    max-height: 27rem;
  }
}

@media (min-width: 601px) and (max-width: 1000px) {
  .beer--full {
    height: 55vw;
    max-height: 27rem;
  }
}

@media (min-width: 401px) and (max-width: 600px) {
  .beer--full {
    height: 19rem;
    max-height: 27rem;
  }
}

@media (max-width: 400px) {
  .beer--full {
    height: 19rem;
    max-height: 27rem;
  }
}

/* BEER NAME WHEN FULL --------------------------------------------------------------*/

.beer--full .beerInfo-wrapper {
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

@media (min-width: 601px) {
  .beer--full .beerInfo-wrapper {
    top: 27%;
  }
}

@media (max-width: 600px) {
  .beer--full .beerInfo-wrapper {
    top: 30%;
  }
}

.beer--full .beerInfo-socialmedia {
  margin-top: 2rem;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

/* -------------------------------------------------------------------------------------*/

.beer--empty .beerInfo-wrapper {
  position: absolute;
  width: 100%;
  top: 90%;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

.beer--empty .beerInfo-socialmedia {
  margin-top: 4rem;
  -webkit-transition: all 0.75s ease-out;
  -moz-transition: all 0.75s ease-out;
  -o-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

.beerInfo-name {
  font-size: calc(1.5rem + 2vw);
  line-height: calc(1.6rem + 2vw);
  font-family: Impact;
  letter-spacing: 1px;
  text-align: center;
  color: #842d0f;
}

.beerInfo-style {
  font-size: calc(0.75rem + 1vw);
  font-family: Impact;
  letter-spacing: 1px;
  text-align: center;
  color: #ed3700;
}

.beerInfo-socialmedia {
  text-align: center;
  font-family: Impact;
  letter-spacing: 1px;
  color: #ed3700;
}

@media (min-width: 601px) {
  .beerInfo-socialmedia {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .beerInfo-socialmedia {
    font-size: 0.5rem;
  }
}

.socialmedia-button {
  width: 2rem;
  height: 2rem;
}

/* INFO BUTTON ------------------------------------------------------------*/

.info {
  z-index: 3;
  position: absolute;
  right: 1rem;
  top: 1rem;
  background-color: white;
  color: blue;
  text-align: center;
  font-weight: bold;
  font-family: 'Georgia';
  transition: all 0.15s cubic-bezier(0.11, 0.65, 1, 1.69);
}

#backarrow {
  position: relative;
  top: -1px;
  left: -2px;
}

code {
  background-color: #262046;
}

@media (min-width: 601px) {
  .info {
    width: 3rem;
    height: 3rem;
    border-radius: 1.5rem;
    line-height: 3rem;
    font-size: 2.5rem;
  }
  #backarrow {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 600px) {
  .info {
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    line-height: 2rem;
    font-size: 1.75rem;
  }
  #backarrow {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.info:hover {
  transform: scale(1.15);
}

/* ---------------------------------------------------------------------------*/

.footer {
  color: #fefce2;
  background-color: #ff5427;
  text-align: center;
  padding: 1rem;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
}

.aboutWrapper {
  padding: 2rem 1rem 1rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  overflow-x: auto;
}

.aboutTitle {
  text-align: center;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
  font-weight: normal;
  line-height: 2.7rem;
}

.aboutSection {
  width: 90%;
  max-width: 50rem;
  margin: auto;
  line-height: 1.45rem;
}

.aboutTitle-comingSoon {
  text-align: center;
}

.aboutSection a,
.aboutSection a:hover,
.aboutSection a:visited {
  color: #ff5427;
  text-decoration: none;
}

.aboutContact_wrapper {
  margin: 2rem auto 0 auto;
  text-align: center;
}

.contactForm_email,
.contactForm_message {
  border: 0;
  outline: 0;
  padding: 1rem;
  border-radius: 8px;
  display: block;
  width: 25rem;
  max-width: 70vw;
  min-width: 250px;
  margin: 1rem auto 0 auto;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0px 0px 0px 3px #558a3c;
}

.contactForm_message {
  height: 8rem;
}

.contactForm_email:invalid,
.contactForm_message:invalid {
  box-shadow: 0px 0px 0px 3px red !important;
}

.contactForm_button {
  color: white;
  background: #ff5427;
  cursor: pointer;
  border: 0;
  outline: 0;
  padding: 1rem;
  border-radius: 8px;
  display: block;
  width: 25rem;
  max-width: 70vw;
  min-width: 250px;
  margin: 1rem auto 0 auto;
  font-size: 1rem;
}

.contactForm_button:hover {
  /*box-shadow: 0 1px 1px 1px #ff5427;*/
}

.contactForm_button--depressed {
  background: #8a311b !important;
}

.wraparoundNames {
  z-index: 0;
  position: absolute;
  font-size: 4vw;
  top: 0.5vw;
  left: 0.5vw;
  width: 115vw;
  color: #1c192a;
  font-family: 'Impact', sans-serif;
  letter-spacing: 1px;
  pointer-events: none;
}
