@font-face {
  font-family: 'Unkempt';
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: content-box;
}

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

h1 {
  margin: 10px 0px;
}

h2 {
  margin: 10px 0px;
}

ul {
  text-align:center;
  font-weight: bold;
  list-style-position: inside;
}

.music {
  list-style-image: url();
}

.apparel {
  list-style-image: url();
}

.merch {
  list-style-image: url();
}

a {
  color: #2B5A80;
}

a:hover {
  color: #BAA238;
}

a:active {
  color: #C7584C;
}

.links {
display: flex;
justify-content:space-around;
margin: 10px;
font-size:20px;
}

.links:hover {
transform: translateY(-2px);
}

.links:active {
transform: translateY(3px);
}


/* Desktop Styles */
@media only screen and (min-width: 401px) {

  body {
    color: black;
    background-image: url(party.gif);
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Unkempt';
    font-size: 14px;
  }

  .bigcontainer {
    display: flex;
    justify-content:center;
  }

  .container {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    box-sizing:content-box;
    background-color:rgba(224, 224, 204, 0.5);
    background-image: url(Paper.jpg);
    background-position:center;
    background-size:cover;
    background-blend-mode:lighten;
    padding:10px;
    border-radius: 0px;
    margin: 0px;
    width: 400px;
    border: 20px ridge;
    border-radius: 10px;
    border-color: #2B5A80 #BAA238 #C7584C #39A133;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
  }

  .content {
    border: 0px solid #255555; /*remove later*/
    flex: 1;
    max-width: 400px;
    text-align: center;
    padding-top: 30px;
  }

  .balloon {
    position:absolute;
    transform: translate(-50%, -95%);
  }

  .pooh {
    position:absolute;
    transform: translate(-50%, 80%);
    width:50%;
  }

}

/* Mobile Styles */
@media only screen and (max-width: 400px) {

  body {
    color: black;
    background-image: url(party.gif);
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Unkempt';
    font-size: 14px;
  }

  .bigcontainer {
    display: flex;
    justify-content:center;
    width: 100%;
  }

  .container {
    background-color:rgba(224, 224, 204, 0.5);
    background-image: url(Paper.jpg);
    background-position:center;
    background-size:cover;
    background-blend-mode:lighten;
    border: 20px ridge;
    border-radius: 10px;
    border-color: #2B5A80 #BAA238 #C7584C #39A133;
    margin: 0px;
    width:100%;
  }

  .content {
    width: 100%;
    text-align: center;
  }

  .balloon {
    margin-top:-25%;
  }

  .pooh {
    display:none;
  }


}
