html, body {
  height: 100%;
}
*:focus, *:hover{
    outline: none;
}
body{
	background-image: url("../img/fondoError.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin-left: 80px;
	margin-right: 80px;
	max-width: 1300px;
  	display: flex;
  	flex-direction: column;
}
@media (max-width: 1000px) {
  body{
	margin-left: 40px;
	margin-right: 40px;
  }
}
@media (max-width: 768px) {
  body{
	margin-left: 10px;
	margin-right: 10px;
  }
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
  text-align: center;
  width: 100%;
}
.logo-container img{
	width: 100%;
	max-width: 350px;
  margin-top: 100px;
}
h1, h3{
  margin-top: 80px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #FFF;
  font-size: 40pt;
  text-transform: uppercase;
}
h3{
  margin-top: 10px;
  font-size: 20pt;
  text-transform: none;
}
.text-container{
  max-width: 55%;
  display: inline;
}
.img-container img{
  max-width: 45%;
  display: inline;
  float: right;
}
.main-button{
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #FFF;
  font-size: 12pt;
  text-transform: uppercase;
  background-color: transparent;
  padding: 13px;
  border-radius: 25px;
  margin-top: 20px;
  outline: 0px;
  border-style: solid;
  border-color: #FFF;
}
.main-button:hover{
  text-decoration: underline;
}
@media (max-width: 768px) {
  .logo-container img{
    width: 70%;
    max-width: 70%;
    margin: auto;
    margin-top: 20px;
  }
  .img-container img{
    float: none;
    display: block;
    margin: auto;
    max-width: 40%;
    margin-top: 20px;
  }
  .text-container{
    max-width: 100%;
    display: block;
    margin: auto;
    text-align: center;
  }
  h1{
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  h1{
    font-size: 30pt;
  }
  h3{
    font-size: 14pt;
  }
}
