/* 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: #000000;
  width: 1000px;
  margin: auto;
  color: white;
  font-family: Verdana;
  background-image: url('games/GamecubeMenuLoop.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;  
  background-size: cover;
  image-rendering: pixelated;
  
}

footer {
  text-align: center;
}

div {
  float: none;
}

img {
  float: inherit;
}

p {
  line-height: 1.2;
}

.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(121, 81, 169), rgb(81, 52, 117));
  margin-top: 10px;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  float: none;
}
.text-box-iframe {
  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(121, 81, 169), rgb(81, 52, 117));
  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;
  margin-right: 20px;
  position: relative;
}

.imgfloatright {
  float: right;
}

/*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;
}