*{
  margin: 0;
  padding: 0;
  font-family: 'manrope', 'Roboto', sans-serif;

}
@font-face {
  font-family: "manrope";
  src: url("manrope/regular.otf");
}

:root {
  --primary-color: #FEE2E2;
  --accent-color: #ffffff;

}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body{
  
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* Header */

header{
  background-image: url("images/header.png");
  background-size: cover;
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0,0,0,0);
  z-index: 10;
}

#headertext{
  display: flex;
  flex-direction: column;

  margin-left: 5vw;

  color: var(--accent-color);
  font-size: 1.5em;
  font-weight: 600;

  /*
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  */
}

#nombre{
  /* make it fit content */
  display: block;
  float: right;
  height: 13vw;
  margin-right: 5vw;

}

#bvn{
  color: #FAC020;
  text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 2px #000000;

}

#qsts1{
  font-family: 'manrope', sans-serif;
  color: white;
  font-size: 0.7em;
  font-weight: 100;
  font-style: italic;
  

  width: fit-content;
  margin: 3vw;
  margin-left: 0;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #000000;
  border-style: solid;
  border-color: #000000;
  border-width: 1px;
  border-radius: 10px;
}

#qsts2{
  font-family: 'manrope', sans-serif;
  color: rgb(0, 0, 0);
  font-size: 0.7em;
  font-weight: 100;
  font-style: italic;
  

  width: fit-content;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-style: solid;
  border-width: 1px;
  border-radius: 10px;
  background-color: #ffffff;
  border-color: #ffffff;
  
}

/* Main */

main{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}





#map_canvas {
  margin: 5vw;
  width: 90%;
  height: 90vw;  
  padding: 0px;
  border: #00000000;
  border-style: solid;
  border-radius: 25px;
}













/* Footer */

hr{
  width: 80%;
  margin-bottom: 2vh;
  border: 1px solid #000000;

  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

footer{
  width: 100%;
  text-align: center;
  align-items: center;
}

#logosfooter{
  background-color: #ffffff;

  width: 100%;
  display: block;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  position: relative;
}



.logosorgas{
  width: 15vw;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-bottom: 5vw;
  max-width: 170px;
}

#textfooter{
  margin-left: 4vw;
  margin-bottom: 1vw;
  text-align: left;
  font-size: 1.2em;
}










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

  header{
      height: 30vh;
  }

  #nombre{
      display: none;
  }
  #bvn{
      font-size: 0.6em;
  }
  #qsts1{
      font-size: 0.5em;
  }
  #qsts2{
      font-size: 0.5em;
      margin-right: 5vw;
  }

  

  .subsections{
      font-size: 1em;
      width: 80vw;
  }

  #textfooter{
      font-size: 0.8em;
      margin-bottom: 0;
  }

}
  