/* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, p, a, td, div{
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 0.9vw;
}

/* Basic */
body { 
  font: 18px/23px "Cantarell", sans-serif;
  color: #ffffff;
}

a {
  color: #ffffff;
  text-decoration: none;
}

p {
  margin: 1vh 0 1vh 0;
  padding: 0.5vh;
}

h2 {
  text-align: center;
  text-decoration: underline overline
}

img {
    max-width:65%;
    height:auto;
}

table {
  table-layout: fixed;
  width: 100%;
  margin: 0 auto;
}

.container {
  display: table;
  width: 100%;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

.content {
  display: table-cell;
  vertical-align: top;
  padding: 4vh;
}

.bottomright {
     position: fixed;
     bottom: 2vh;
     right: 2vh;
}

.servers {
	width: 18vw;
	height: 16vw;
    color: #ffffff;
	background-color: rgba(0,0,0,0.35);
	border-radius: 5px;
    padding: 5px;
    margin: 5px;
	font-weight: 500;
	line-height: normal;
	text-align: left;
    text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 3vh 1vw;
  width: 17vw;
  color: #ffffff;
  #border: 0.2vh solid #cafaea;
  border-radius: 5px;
  background-color: rgba(0,0,0,0.35);
}

.button:hover {
	-moz-transform:rotate(-8deg);
	-webkit-transform:rotate(-8deg);
	transform:rotate(-8deg);
}

/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  
  body h1 {
    font-size: 18px;
    line-height: 23px;
  } 

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

  html, body, .container {
    height: auto;
  }
}