/* general styles */
html, body, h1, h2, h3, p, form, ul, li, ol{
  margin: 0px;
  padding: 0px;
}
html, body{
  width: 100%;
  height: 100%;
}
body{
  min-height: 100%;
  margin: 0px;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 19px;
  background-color: #dadad9;
  background-image: url("../images/bg.svg");
  background-size: 70px auto;
  background-repeat: repeat;
  background-position: center center;
  color: #005c70;
}

div.container{
  width: 490px;
  min-height: 100%;
  margin-left: auto;
  margin-right: auto;
  border-left: dotted 3px #FFF;
  border-right: dotted 3px #FFF;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  background-image: url("../images/bg.png");
  background-size: 100% auto;
  background-repeat: repeat-y;
}
div.content{
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}
div.textTable{
  display: table;
  height: 100%;
  width: 100%;
  text-align: center; 
}
div.textCell{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

div.container img{
  display: block;
  width: 90%;
  margin-left: auto;
  margin-right: auto;    
}
div.container img.logo{
  width: 70%;
  margin-bottom: 30px;
  margin-top: 60px;
}
div.container img.cards{
  margin-top: 30px;
  margin-bottom: 60px;
}
article{
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;    
}
article a{
  color: inherit;
  text-decoration: none;
  font-size: 2em;
  padding-left: 5px;
  padding-right: 5px;
}
article a:hover{
  color: #000;
}

@media screen and (max-width: 500px) {
  body{
    font-size: 14px;
  }
  div.container{
    width: 320px;
  }
}