:root {
  --black: #342E37;
  --white: #F6F1DE;
  --green: #9bc53d;
  --orange: #fa7921;
  --red: #e55934;
  --yellow: #fde74c;
}

body {
  font-family: Gotham;
  color: var(--black);
  background-color: var(--white);
}

@font-face {
  font-family: Blacker;
  src: url(../font/Blacker-Text-Heavy-trial.ttf);
}

@font-face {
  font-family: Gotham-Bold;
  src: url(../font/Gotham-Bold.otf);
}

@font-face {
  font-family: Gotham;
  src: url(../font/Gotham-Book2.otf);
}

.gotham-bold {
  font-family: Gotham-Bold;
}

/* Sección Header */
/* Sección Header */
/* Sección Header */
/* Sección Header */

section#header {
  display: flex;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  /* background: url('../img/chile.jpeg');
  background-position: center;
  background-size: cover; */
  background: url('../img/pattern.png') repeat;
  overflow: hidden;
}

section#header img:first-of-type {
  position: fixed;    
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -100;
  width: 100vw;
  height: auto;
}

.shadowed {
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
  max-width: 80%;
  height: auto;
}

section#header h1 {
  color: var(--white);
  font-size: 4rem;
  text-transform: uppercase;
  text-shadow: 2px 2px var(--orange);
  font-family: Gotham-Bold;
}

/* Sección Info */
/* Sección Info */
/* Sección Info */
/* Sección Info */

section#info {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 8rem;
}

section#info > img {
  max-width: 100px;
  height: auto;
}

section#info h2{
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 0;
}

section#info h2 span {
  color: var(--green);
  text-shadow: 1px 1px var(--orange);
}

section#info h3{
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-top: 0;
  font-style: italic;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.info-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-item .image {
  height: 200px;
  width: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease-in-out;
}

.info-item .image:hover {
  -webkit-box-shadow: 5px 5px 0px 0px var(--green);
-moz-box-shadow: 5px 5px 0px 0px var(--green);
box-shadow: 5px 5px 0px 0px var(--green);
}

.info-item .image img {
  max-width: 100%;
  height: auto;
}

.info-item h2{
  color: var(--orange);
}

/* Sección Footer */
/* Sección Footer */
/* Sección Footer */
/* Sección Footer */

section#footer {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-evenly;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

@media only screen and (max-width: 992px) {

  /* Sección Header */
  /* Sección Header */
  /* Sección Header */
  /* Sección Header */

  section#header img:first-of-type {
    height: 100vh;
    width: auto;
  }

  section#header h1 {
    font-size: 2rem;
    text-align: center;
  }

  /* Sección Info */
  /* Sección Info */
  /* Sección Info */
  /* Sección Info */
  .info-container {
    flex-direction: column;
  }

  .info-item {
    margin-top: 4rem;
  }

  /* Sección Footer */
  /* Sección Footer */
  /* Sección Footer */
  /* Sección Footer */
  section#footer {
    flex-direction: column;
    align-items: center;
  }

}


/* ESTO ES TEMPORAL */
/* ESTO ES TEMPORAL */
/* ESTO ES TEMPORAL */
/* ESTO ES TEMPORAL */
section#info, section#footer {
  display: none;
}

/* ESTO ES TEMPORAL */
/* ESTO ES TEMPORAL */