
body,html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
}

html {
    box-sizing: border-box; /* Hack para Box Model **/
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Montserrat', sans-serif;
}

#main{
	position: relative;
}

.Fondo{
	width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-image: url(../img/fondoC.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    justify-content: center;
    animation: fondos 33s cubic-bezier(1,0.25,0.1,025) 0s infinite;
}

@keyframes fondos{
	0%
	{
		background-image: url(../img/fondoA.jpg);
	}
	33%
	{
		background-image: url(../img/fondoB.jpg);
	}
	100%
	{
		background-image: url(../img/fondoC.jpg);
	}
}


#logo{
	position: absolute;
	left: 1vw;
	max-width: 10vw;
}
h2{
	position: absolute;
	max-width: 8vw;
	left: 11vw;
	top: 2.5vw;
	font-size: 3vw;
	color: #3a0046;
	text-shadow: 0.15vw 0.15vw 0.3vw #bbb;
}
.title{
	position: relative;
	top: 30vh;
	margin: auto;
	padding-left: 14vw;
	padding-right: 14vw;
	text-align: center;
}
h1{
	position: relative;
	margin-bottom: 2vh;
	font-size: 4vw;
	color: hsl(30, 10%, 90%);
	background-color: #3a0046;
	border-style: none none solid none;
	border-color: #3a0046;
	border-width: 0.6vh;
	border-radius: 5px;
}
.sub-title{
	position: relative;
	display: inline-block;
}
h3{
	display: inherit;
	font-size: 1.8vw;
	color: hsl(30, 10%, 90%);
	background-color: #3a0046;
	border-style: none none solid none;
	border-color: #3a0046;
	border-width: 0.3vh;
	border-radius: 5px;
	margin: 0.5vh;
}
.button{
	position: relative;
	top: 7vw;
	background-color: #3a0046;
	color: hsl(30, 10%, 90%);
	padding: 1vw 2vw;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	text-decoration: none;
	font-size: 1.8vw;
	font-weight: bold;
	border-radius: 15px;
	box-shadow: 0.15vw 0.15vw 0.3vw #222;
}
.button:hover{
	color: hsl(180, 60%, 80%);
}

#footer{
	position: fixed;
	width: 100%;
	min-height: 3vh;
	max-height: 14vh;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, #222, #111);
	text-align: center;
}

#footer__texto{
	text-decoration: none;
	color: hsl(30, 10%, 70%);
	font-size: 1.5vw;
	margin: 0.3vh;
}

@media (min-width: 768px) {
	#footer__texto{
		font-size: 1vw;
	}
}

@media (min-width: 1200px) {
	#footer__texto{
		font-size: 0.75vw;
	}
}


/*
img#bg1 {
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  animation: background1 38s ease 0s infinite;
}
img#bg2 {
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  animation: background2 38s ease 0s infinite;
}
img#bg3 {
  min-height: 100%;
  min-width: 100%;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  animation: background3 38s ease 0s infinite;
}
@keyframes background1 {
  0% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
  95% { opacity: 0;}
  100% { opacity: 1; }
}
@keyframes background2 {
  0% { opacity: 0; }
  25% { opacity: 0; }
  30% { opacity: 1; }
  55% { opacity: 1;}
  60% { opacity: 0;}
  100% { opacity: 0; }
}
@keyframes background3 {
  0% { opacity: 0; }
  55% { opacity: 0; }
  60% { opacity: 1; }
  95% { opacity: 1;}
  100% { opacity: 0; }
}
*/