html {
  font-family: "MS UI Gothic", Tahoma;
  font-size: 14px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  font-smooth: never;
  -webkit-font-smoothing: none;
}

body {
  background-image: url("/bg/sunshine.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: white;
  font-family: sans-serif;
  font-size: 14px;
  }
  
.center {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 8%;
}
  
/*Contains everything*/
.wrapper {
  width: 1150px;
  margin: 0 auto;
  top: 0;
  margin-top: -10px;
  border-left: 0px solid #12282f;
  border-right: 0px solid #12282f;  
  margin-bottom: -10px;
  }
  
/*Contains main and sidebar divs*/
.wrapper-2 {
  position: relative;
}

.header {
  height: 200px;
  overflow: hidden;
  background-image: url("/img/logo.png");
  background-size:cover;
}
  
  
.footer {
  padding: 5px 10px 0px 10px;
  background: blue;
  color: white;
  border: 3px double black;
  margin: 10px 0px 15px 0px;
  text-align: center;
}
  
.header img {
  border-top: 0px;
}
  
/*Big title at the top of the page.*/  
.title {
  color: black;
  padding: 15px 10px 10px 20px;
  }
  
/*Override default margins/padding for headings.*/
.title h1, .title h2, .title h3 {
  padding:0;
  margin: 0;
  }

/*Container for top row of links.*/
.links {
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 5px;
  text-align: center;
  background-color: blue;
  border: 3px double black;
  }
  
/*Div style for individual links.*/
.link {
  text-align: center;
  display: inline-block;
  list-style-type: none;
  float: none;
  font-weight: bold;
  font-size: 1.16em;
  padding: 5px;
  margin-right: 10px;
  margin-left: 10px;
  }
  
.link a {
  color: white;
  text-decoration: none;
  }

/*These three classes are just for defining the boundaries and size of the main and sidebar columns. Most fancy styling goes in the 'box' class.*/
.sidebar-left, .main, .sidebar-right {
  display: inline-block;
  }
  
.sidebar-left, .sidebar-right {
  display: inline-block;
  width: 200px;
  position: absolute;
  top: 0;
}

.sidebar-left {
  margin-left: 10px;
  }
  
.main {
  margin-left: 220px;
  width: 710px;
  }
  
.sidebar-right {
  margin-right: 10px;
  margin-left: 10px;
  }
  
/*Box default*/
.blog {  
  padding: 20px 20px 0px 20px;
  color: #12282f;
  border: 3px double #333;
  margin: 10px 0px 15px 0px;
  background-image: url("/img/star.jpeg");
  background-size: cover;
  background-position: center;
}

.box {  
  padding: 20px 20px 20px 20px;
  color: #12282f;
  border: 3px double #333;
  margin: 10px 0px 15px 0px;
  background-image: url("/img/gradient.jpeg");
  background-size: cover;
  background-position: center;
}

.nav {  
  padding: none;
  background: blue;
  color: white;
  border: 3px double #333;
  margin: 10px 0px 15px 0px;
}
  
.welcome {
  padding: 5px 10px 0px 10px;
  margin-top: 10px;
  background: transparent;
  color: blue;
  border: 5px solid transparent;
  border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1
}

.status {
  padding: 70px 10px 70px 10px;
  color: #12282f;
  border: 3px double #333;
  margin: 10px 0px 15px 0px;
  background-image: url("img/status.jpeg");
  background-size: cover;
}

.updates {
  padding: 20px 10px 0px 10px;
  color: #12282f;
  border: 3px double #333;
  margin: 10px 0px 15px 0px;
  background-image: url("img/gingham.png");
  background-size: cover;
}

.ads {
  margin: 10px 0px 15px 0px;
  text-align: center;
  border: 3px double #333;
}

.mainads {
  margin: 10px 0px 15px 0px;
  text-align: center;
}
  
.blog, .status, .updates, .inner img {
  max-width: 100%;
  height: auto;
}

.welcome img {
  float: left;
  height: auto;
  width: 150px;
}

/*misc css, like ul bullets, button formats, etc*/

.block {
  display: block;
  width: 100%;
  border: 1px solid white;
  background-color: blue;
  color: white;
  cursor: pointer;
  text-align: left;
  line-height: 16px;
}

ul {
  list-style-image: url("/img/bullet.png");
}

a:visited { 
 text-decoration: none; 
 color: white; 
}

/* Blog stuff (will move to a new css later*/
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: white;
  margin: 10px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: blue;
  color: white;
  float: left;
  border: 1px solid black;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 16px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button:active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}