/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

header {
  width: 1000px;
  height: 180px;
  background-image: url(.../BMGHeader.gif);
  
}

body {
  background-color: #0000ff;
  width: 1000px;
  margin: auto;
  color: white;
  font-family: Verdana;
  image-rendering: pixelated;
  
}

footer {
  text-align: center;
}

div {
  float: none;
}

img {
  float: inherit;
}

p {
  line-height: 1.2;
}
td {
    border: 2px solid white;
    border-collapse: collapse;
    width: 50%;
    padding: 5px;
}
table {
    border-collapse: separate;
    border-spacing: 0px;
    background-color: #000000;
}

.section {
  padding: 20px;
  background-color: #00a6ff;
  width: 1000px;
  float: left;
}

.box-holder {
    float: left;
    width: 867px;
    height: auto;
}

.text-box {
  width: 830px; /*this may need to change if other paddings/borders are changed*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border: 4px solid #FFFFFF;
  border-radius: 15px;
  background-color: rgb(57, 56, 222);
  background-image: linear-gradient(rgb(57, 56, 222), rgb(0, 0, 99));
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  float: none;
}
.text-box-frog {
  width: 830px; /*this may need to change if other paddings/borders are changed*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border: 4px solid #FFFFFF;
  border-radius: 15px;
  background-color: rgb(57, 222, 56);
  background-image: linear-gradient(rgb(57, 222, 56), rgb(0, 99, 00));
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  float: none;
}
.cabinet-box {
  width: 830px; /*this may need to change if other paddings/borders are changed*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-radius: 15px;
  background-color: rgb(57, 56, 222);
  background-image: linear-gradient(rgb(57, 56, 222), rgb(0, 0, 99));
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  float: none;
}

.music-box {
  position: -webkit-sticky;
  position: absolute;
  width: 250px;
  background-color: rgb(57, 56, 222);
  background-image: linear-gradient(rgb(121, 81, 169), rgb(81, 52, 117));
  float:left;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  bottom: 4px;
  left: -180px;
  border: 4px solid #FFFFFF;
  border-radius: 15px;
  
}
.music-holder {
  position:sticky;
  bottom: 4px;
  left: -300px;
  float:left;
}

/*these are meant to let images float at certain parts of a textbox*/
.imgfloatleft {
  float: left;
}

.imgfloatright {
  float: right;
}

.imgabsoluteleft {
  float: left;
  position: absolute;
  bottom: 8px;
  left: 16px;
  font-size: 18px;
}

.zoom {
  display: inline-block;
  transition: transform .2s;
  width: auto;
  height: auto;
  margin: 0 auto;
  image-rendering: crisp-edges;
}

.zoom:hover {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Safari 3-8 */
  transform: scale(1.5); 
}
/*navigation things*/
#nav-tabs {
  float: left;
  width: 100px;
  height: 1000;
  /*border-radius: 25px;
  border: 4px solid #FFFFFF;
  background-image: linear-gradient(rgb(57, 56, 222), rgb(0, 0, 99));*/
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 0px;
  

  
}
nav {
  display: block;
}

/*links*/
a:link {
  color: cyan;
}
a:visited {
  color: white;
}
a:hover {
  color: skyblue;
}