/* 
Author: Orleidy Fermín Marante
Content: Sheet Styles
Proyect: The Legend of Zelda Web

*/


body{
  margin: 0;
  font-family: futura;
  font-size: 9pt;
  
}

/* Sección de Inicio */

.container{
  padding:0;
}
.section_1 {
padding: 150px 0;
}

.section_2{
  display: flex;            
  justify-content: center;   
  align-items: center; 

  background-color: #477238;
  color: #F7DFB6; 
  font-family: futura;
  font-size: 30pt;
  min-height: 100vh;
  text-align:center;
  
}

.sky, .clouds, .grass{
  position: absolute;

}

.sky{
  top:0%
}

.clouds{
  top: 0%;
}

.grass{
  top:48%;
  z-index: 2;
}

.Hyrulean_Container{
  margin-top: 100px;
  position: relative;
  text-align: center;
}
.Hyrulyan_symmbol {
  width: 500px;
  animation: flotar 3s ease-in-out infinite;
}

@keyframes flotar {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}





.parallax {
  /* The image used */
  background-image: url("img_parallax.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


