<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">

body {
  background-color: white;
  font-family:"PT Sans", sans-serif;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  color: black;
  text-align: left;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 35px;
  color: black;
  text-align: left;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: black;
  text-align: left;
}

p {
  font-family: Roboto;
  font-size: 20px;
}

.tituloPrincipal{
  font-family: 'Oswald', sans-serif;
  color: black;
  text-align: left;

}

.tituloSecundario{
  color: black;
  text-align= centered;
  font-family: "PT Sans",sans-serif;
  font-size: 16px;
}

.tituloSecundario < a {
  font-color: black;
}

.header{
background-color: #ffffff;
columns: 4;
rows: 1;
column-span: 10px;
}

.grid-header {
  display: grid;
  background-color: #ffffff;
  columns: 4;
  rows: 1;
  grid-gap: 10px;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 200px;
  position: relative;
  width: 100%;
}


.main-grid{
  display: grid;
  background-color: #ffffff;
  columns:4;
  rows:5;
  grid-gap: 10px;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 240px 240px 240px 240px 240px;
  /* padding:10px; */
  /* font-size: 20px; */
  font-color: black;
}

/* .main-grid > div {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid black;
  text-align: center;
  height: 300px;
} */


.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #ffffff;
}

.img-container:hover .overlay {
  opacity: 1;
}

.text {
  font-family: courier;
  color: black;
  font-size: 20px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.text < a {
  font-color: black;
}


.img-container {
  float: centered;
  width: 100%;
  position: relative;
  font-family: "PT Sans-Bold", sans-serif;
  text-align: center;
  color: black;
}

.doc {
  align-self: "center";
  width: "66%";
  text-align: "left";

}

code{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
  background: rgba(144, 144, 144, 0.075);
	border-radius: 4px;
	border: solid 1px #c9c9c9;
	font-family: "PT Sans-Bold", sans-serif, monospace;
	font-size: 0.9em;
	margin: 0 0.25em;
	padding: 0.25em 0.65em;
}

pre code {
			display: block;
			line-height: 1.75;
			padding: 0.25em 1.5em;
			overflow-x: auto;
		}
