html, body {

  background-color: #3498db;
  padding: 0;
  margin: 0;
  font-family: 'Permanent Marker', 'Open Sans', sans-serif;
}

h1 {
  text-align: center;
  color: white;
  font-size: 46px;
  text-shadow: 0px 1px black;
  width: 500px;
  margin: 90px auto;
  font-weight: 800;
}

.codecons {
  position: absolute;
  bottom: 5%;
  left: 5%;
  font-size: 21px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.codecons:hover {
  color: #fff;
}

.bottle {
  margin: 140px auto;
  position: relative;
  width: 200px;
  height: 300px;
  border-style: none solid solid solid;
  border-width: 0px 16px 26px 16px;
  border-color: #ecf0f1;
  border-radius: 16px 16px 50px 50px;
  box-shadow: 1px 1px 15px -5px black;
  z-index: 5;
}
.bottle .beer {
  position: absolute;
  height: 300px;
  width: 200px;
  background-color: #e67e22;
  border-radius: 0 0 27px 27px;
  box-shadow: 1px 1px 10px -5px gray;
}
.bottle .beer:after {
  content: '';
  position: absolute;
  height: 300px;
  width: 100px;
  background-color: white;
  opacity: 0.3;
}
.bottle .bottle_shine {
  position: absolute;
  left: 15px;
  top: 20px;
  height: 250px;
  width: 40px;
  background-color: white;
  opacity: .6;
  border-radius: 20px;
}
.bottle .bottle_shine:after {
  content: '';
  height: 150px;
  width: 15px;
  background-color: white;
  border-radius: 20px;
}
.bottle .bottle_handle {
  height: 140px;
  width: 45px;
  position: absolute;
  border-radius: 0 34px 34px 0;
  top: 55px;
  left: 216px;
  box-shadow: 0 0 0 20px #ecf0f1;
}
.bottle .bottle_handle:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 20px;
  background-color: black;
  opacity: .1;
  top: -20px;
  left: 0px;
}
.bottle .bottle_handle:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 20px;
  background-color: black;
  opacity: .1;
  top: 140px;
  left: 0px;
}
.bottle .foam, .bottle .foam_1, .bottle .foam_2, .bottle .foam_3, .bottle .foam_4, .bottle .foam_5 {
  position: absolute;
  width: 50px;
  height: 70px;
  background-color: white;
  border-radius: 25px;
  top: -13px;
  left: -5px;
  box-shadow: 0 10px 1px -5px #ecf0f1;
  transition: all 2s ease-out;
}
.bottle .foam_1 {
  left: 30px;
  top: -15px;
  height: 80px;
}
.bottle .foam_2 {
  left: 60px;
  top: -15px;
  height: 80px;
}
.bottle .foam_3 {
  left: 90px;
  top: -15px;
  height: 80px;
}
.bottle .foam_4 {
  left: 120px;
  top: -15px;
  height: 80px;
  animation: drip 9s infinite ease;
}
.bottle .foam_5 {
  left: 155px;
  height: 70px;
}
.bottle .bubble, .bottle .bubble_1, .bottle .bubble_2, .bottle .bubble_3, .bottle .bubble_4, .bottle .bubble_5, .bottle .bubble_6 {
  position: absolute;
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 10px;
  opacity: .5;
  bottom: -15px;
}
.bottle .bubble_1 {
  left: 20px;
  animation: bubble 1.5s infinite linear 0s;
}
.bottle .bubble_2 {
  left: 50px;
  animation: bubble 3s infinite linear 0s;
}
.bottle .bubble_3 {
  left: 80px;
  animation: bubble 1s infinite linear .1s;
}
.bottle .bubble_4 {
  left: 110px;
  animation: bubble 2s infinite linear 0s;
}
.bottle .bubble_5 {
  left: 140px;
  animation: bubble 3.5s infinite linear .1s;
}
.bottle .bubble_6 {
  left: 170px;
  animation: bubble 2.5s infinite linear 0s;
}
@keyframes bubble {
  0% {
    bottom: 0;
    opacity: .5;
  }
  50% {
    bottom: 100px;
  }
  100% {
    opacity: .1;
    bottom: 260px;
  }
}
@keyframes drip {
  0% {
    height: 80px;
  }
  50% {
    left: 120px;
    top: -15px;
    height: 160px;
  }
  100% {
    height: 80px;
  }
}