html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
	margin: 0;
	
}

body {
	background: #ffff; /*#e9e9e9;*/
	font-family: 'Roboto', sans-serif;
}

/*header Style*/

header{
	height: auto;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 30px;
	background:#354e37;
}

.logo{
	margin-top: auto;
	margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 5px;
}

img {
	height: auto;
  	max-width:100%;
}


/*Fonts style*/
h1{
	color: #ffff;
	font-size: 3em;
	font-family: 'Red Hat Display', sans-serif;	
}

h2{
	color: #ffff;
	/*font-size: 2.9em;*/
	font-family: 'Audiowide', cursive;	
}

h3 {
	color: #ffff;
	font-family: 'Audiowide', cursive;	
}
                 
h4{
  text-align: center;
	font-size: 1.5em;

  background: rgb(101,166,119);
  background: linear-gradient(90deg, rgba(101,166,119,1) 15%, rgba(75,113,78,1) 50%, rgba(101,166,119,1) 85%);
}

p{
	color: #ffff;
}

h5{
	color: #ffff;
	font-size: inherit;
	font-weight: 300;
	font-weight: bold;	
}

h6{
	color: #ffff;
	font-size: inherit;
	font-weight: bold;
}

.title > h2{

	font-family: 'Armata', sans-serif;
}

/*animation FadeInUp*/
.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
   fadeInUp;
  animation-name: fadeInUp;
}


/*footer Style*/

footer{
	height:auto;
	width: 100%;
	background: #354e37;
	margin-bottom: 0px;	
}


.logo2 {
    display: block;
    position: relative;
    height: auto;
    width: auto;
}

.support,.copy{
    display: block;
    height: auto;
    margin-top: 20px;
}

.support > p > a {
	color: #ffff;
	text-decoration: none;
}


/*Boton de ir arriba*/

.button-up{
    width: 60px;
    height: 60px;
    background: #1DB954;
    display:none;
    color: white;
    padding: 10px 0px 20px 0px;
    border-radius: 50%;
    font-size: 22px;
    position: fixed;
    bottom:150px;
    right: 20px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 300ms ease;
  /*  transform: scale(0);*/
}

.button-up:hover{
    transform: scale(1.2);
    border-color: rgba(0,0,0,0.1);
}


