body {
    background-color: rgba(17,0,43,1);
    padding: 0px; margin: 0px;
    font-family: Georgia, serif;
    font-size: 14px;
    color: cccccc;
    overflow: hidden;
  }
  
  a { color: cccccc; text-decoration: none; }
  a:hover { color: ffffff; text-decoration: line-through; }
  
  .spin:hover { transform: rotate(360deg); }
  .spin { transition: all 1s ease; }
  
  #background {
    z-index: -5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover !important;
    position: fixed;
    top: -5%; left: -5%;
    height: 110%; width: 110%;
    overflow: none;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
  }
  
  .martiniglass { /* column holder */
    background-color: transparent;
    margin-left: auto; margin-right: auto;
    height: 100%; width: 855px;
    position: relative;
  }
  
  .vodka { /* left column holder */
    z-index: 1;
    background-color: transparent;
    position: absolute; top: 49%;
    transform: translate(0, -50%);
    height: 350px; width: 350px;
    padding: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  h1 { /* title */
    width: 400px;
    padding: 0px; margin: 0px;
    position: relative;
    top: 20px; left: -10px;
    font-family: 'Permanent Marker', cursive;
    font-size: 32px;
    color: ffffff;
    text-shadow:
    -1px -1px 0 #11002b,  
    1px -1px 0 #11002b,
    -1px 1px 0 #11002b,
     1px 1px 0 #11002b;
  }
  
  .cointreau { /* content */
    background-color: rgba(17,0,43,0.5);
    height: 345px; width: 350px;
    padding: 10px; border-radius: 15px 0px 0px 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  
  .cranberryjuice { /* footer */
    background-color: transparent;
    height: auto; width: 350px;
    padding-top: 5px; padding-right: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #11002b;
    text-align: right;
    font-size: 10px;
  }
  
  .limejuice { /* right column */
    float: right;
    background-color: transparent;
    border-left: 5px solid black;
    height: 100%; width: 505px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-align: right;
    overflow: hidden;
  }
  
  .limejuice img {
    border-radius: 0px 15px 15px 0px;
  }
  
  .marquee {
    position: relative;
    margin: 0px; padding: 0px;
    animation: marquee 120s linear infinite;
  }
  
  .marquee:hover {
    animation-play-state: paused;
  }
  
  @keyframes marquee {
    0%   { transform: translate(0, 6%); }
    100% { transform: translate(0, -106%); }
  }
  
  .ice {
    text-shadow: 0px 0px 5px black, 0px 0px 2px black;
    position: relative;
    top: -20px; right: 5px;
  }