@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto+Slab:400,700|Roboto:400,500,700,900&display=swap');

header {
  width: 100%;
  height: 140px;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

header .header-icons-container {
  width: 100%;
  height: 50px;
  display: grid;
  background-color: #47cfac;
}

header .header-icons-container .icons {
  width: 300px;
  height: auto;
  display: flex;
  justify-items: flex-end;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  margin-right: 50px;
}

header .icons span {
  color: white;
}

header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
  
header ul li {
  margin: 0 10px;
}
  
header ul li a {
  text-decoration: none;
  color: black;
}
  
.intro {
  width: 100%;
  object-fit: cover;
}
  
.intro p {
  color: #333; /* color gris oscuro */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 20px 0;
}

.intro img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
  
.h1 {
  text-align: center;
  color: #FFA600; /* color amarillo */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 50px 0;
}

h2 {
  margin-left: 20px;    
  padding: 20px;
}

h3 {
  text-align: center;
  padding: 10px;
}

p {
  margin-left: 20px;
}

td {
  display: inline-block;    
  text-align: center;
  width: auto;
  margin: 10px;
  padding: 10px;
  background-color: #FFA600;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Verdana";
  letter-spacing: 0.5px;
  color: var(--black);
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.table-board {
  padding: 20px;
  background-color: #FFA600;
  font-size: 1.6rem;
  border-collapse: collapse;
  font-family: "Verdana", cursive, sans-serif;
  letter-spacing: 0.5px;
  color: var(--black);
  text-align: center;
  border: 2px solid black;
  margin: 0 auto;
  min-width: 150px; /* Establece un ancho mínimo de 150px */
}

.table-board:hover {
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);    
  color: #666;
}

.table-board td {
  border-radius: 5px;
  transition: all 0.4s ease;
  padding: 5px;
}

.table-board td:hover {
  background-color: rgb(5, 181, 230);
}  

  .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.container-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #e8e8e8;
  border-radius: 10px;
  flex-basis: 40%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.container-box:hover {
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.5);
}

.box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
}

.box h2 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.box p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

.entries {
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow-x: auto;
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  padding: 0;
  list-style: none;
}

.entries ul {
  display: flex;
  justify-content: space-between;
}

.entries ul li {
  width: 30%;
  margin-bottom: 20px;
}

.entries ul li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  margin: 10px 0;
}

.moving-text {
  animation: move 2s ease-in-out infinite;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

ul {
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  flex: 0 0 auto;
  width: 300px; /* Ajuste el ancho deseado de cada elemento
  background-color: #eee;
  padding: 1rem;
  border-radius: 5px; */
}

.categorias ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.categorias ul li {
  width: 20%;
  margin-bottom: 30px;
  margin-top: 30px;
}

.categorias ul li a {
  text-decoration: none;
  color: black;
}

.categorias ul li span {
  display: block;
  text-align: center;
  font-size: 14px;
}

.footer {
  background-color: #222;
  border-top: 35px solid rgb(5, 181, 230);
  color: white;
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;  
  display: flex;
  justify-content: center;
  align-items: center;  
  width: 100%;
}

.footer p {
    color: white;
    margin-top: 30px;
    margin: 20;
}

.footer-text {
  display: inline-block;
}

.footer .footer-icons-container {
  width: 100%;
  height: 80px;
  border-top: 40px solid #47cfac;
  text-align: center;
  display: grid;
  background-color: #FFA600;
}

.footer .footer-icons-container .icons {
  width: 300px;
  height: auto;
  display: flex;
  justify-items: flex-end;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  margin-right: 20px;
}

nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 90px;
}

.nav-logo-container {
  margin-top: 20px;
  margin-left: 20px;
}

nav .nav-logo-container {
  margin-top: 20px;
  margin-left: 20px;
}

nav .nav-logo-container img {
  width: 220px;
  margin-top: 10px;
}

nav .profile-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 50px;
}

nav .profile-link a {
  color: black;
  border-bottom: 1px solid black;
}

body {
  font-family: 'Roboto Mono', monospace;
  margin: 0;
  padding: 0;    
}

a {
  text-decoration: none;
  display: inline;
  color: black;    
}

.home-body {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.grid-container {
  max-width: 980px;
  margin: auto;
}

.home-main {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    height: 100%;
    background-image: url('../assets/img/Cover.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-main section {
    display: grid;
    grid-column: 2;
    justify-items: center;
    height: 350px;
    margin-top: 80px;
}

.home-main-text {
    font-family: 'Roboto mono', monospace;
    font-size: 30px;
    font-weight: 700px;
    letter-spacing: 10px;
    color: black;
    text-align: center;
    color: white;
}

.home-main-button {
    width: 110px;
    height: 50px;
    background: #48cfad;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 50px;
}

.blogs-main {
    display: grid;
}

.blogs-news-container {
    background-color: #e6e9ed;
    padding: 0 50px 40px;
}

.blogs-main-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr;
}

.blogs-news-img-container {
    grid-column: 1;
}

.blogs-news-img-container img {
    width: 85%;
}

.blogs-news-info-container {
    grid-column: 2;
}

.blogs-news-info-container p {
    margin-bottom: 35px;
}

.blogs-posts-container {
    padding: 0 50px 40px;
}

.blogs-posts-container h3 {
    border-bottom: 1px solid #cdd2da;  
    padding-bottom: 20px;
    text-align: center;
}

.blogs-button {
    border: 1px solid #47cfac;
    padding: 10px 15px;
    font-size: 12px;
}

.blogs-posts-container .post-container {
    display: inline-block;
    padding-left: 10px;
    max-width: 30%;
    margin-bottom: 50px;
}

.blogs-posts-container .post-container p {
    margin-bottom: 35px;
}

.blogs-posts-container .post-container img {
    width: 100%;
}

.blogpost-img-container {
    padding: 0 50px 40px;
}

.blogpost-img-container img {
    width: 100%;
}

.blogpost-main-container {
    padding: 0 50px 40px;
}

.blogpost-main-container h3 {
    border-bottom: 1px solid #cdd2da;
    padding-bottom: 20px;
}

.blogpost-main-container article h1 {
    font-size: 35px;
}

.contact-main-container {
    width: 100%;
    min-height: 250px;
    background-color: #e6e9ed;
    text-align: center;
    padding-bottom: 50px;
}

.contact-main-container div {
    display: inline-block;
    width: 49.5%;
    height: 100%;
}

.contact-main-container div a {
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

.contact-main-container .contact-left, .contact-right {
    text-align: initial;
    margin-top: 85px;
}

.contact-main-container img {
    width: 100px;
}

.profile-main-container {
    padding: 70px 40px;
    background-color: #e6e9ed;
    margin-bottom: 50px;
}

.profile-main-container img {
    width: 320px;
    margin-right: 30px;
}

.profile-main-container .profile-container {
    display: flex;
}

.profile-main-proyects {
    padding: 0 50px 40px;
}

.profile-main-proyects h3 {
    border-bottom: 1px solid #cdd2da;
    padding-bottom: 35px;
    text-align: center;
}

.proyects-main-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.proyect-container {
    padding: 0 5px;
}




:root {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

*,
:before,
:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	-ms-box-sizing: inherit;
	-o-box-sizing: inherit;
	box-sizing: inherit;
}

html, body {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
}

html {
	overflow: hidden;
}

body {
	margin: 0;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-moz-overflow-scrolling: touch;
	-ms-overflow-scrolling: touch;
	-o-overflow-scrolling: touch;
	overflow-scrolling: touch;
	-ms-overflow-style: ms-autohiding-scrollbar;
}

#page-wrap {
	position: relative;
	display: block;
	clear: both;
	background: none;
	color: #000;
	text-decoration: none;
	padding: 3rem 0;
	width: 100%;
	height: 100%;
}

#inner-wrap {
	position: absolute;
	top: 3rem;
	left: 0;
	right: 0;
	bottom: 3rem;
	display: table;
	width: 100%;
	height: 100%;
	min-height: 322px;
	overflow: visible;
}

.logo {
	position: absolute;
	z-index: 1;
	top: 3rem;
	left: 2rem;
	display: block;
	width: 9vmax;
	height: 9vmax;
	min-width: 50px;
	min-height: 50px;
}

.waves {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	min-width: 100%;
	min-height: 70%;
	margin: auto 0;
}

.text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 83%;
	height: 100%;
	margin: auto;
}

img, svg {
	display: block;
	overflow: visible;
	pointer-events: none;
}

.group:before,
.group:after {
  content: "";
  display: table;
  clear: both;
}
.group {
  zoom: 1;
}





.credits {
	position: relative;
	z-index: 9;
	font-size: 130%;
	text-align: center;
	width: 100%;
	padding: 2rem 0;
}

.credits a {
	display: inline-block;
	color: #df1888;
	font-family: Arial, sans-serif;
	line-height: 1.5em;
	text-decoration: none !important;
	white-space: nowrap;
	margin: 0 1.2em;
	padding: 0.6em 0;
	transition: 150ms;
}

.credits a:hover {
	color: #2d71b9;
	cursor: pointer;
}

.credits-logo {
	fill: currentColor;
	display: inline-block;
	vertical-align: bottom;
	width: 1.6em;
	height: 1.6em;
	margin: 0 0.5em 0 0;
}


-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
cursor: default;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;


*,
:before,
:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
-ms-box-sizing: inherit;
-o-box-sizing: inherit;
box-sizing: inherit;
}




  @media screen and (min-width: 480px) {
    /* estilos para pantallas pequeñas */
  }
  
  @media screen and (min-width: 768px) {
    /* estilos para pantallas medianas */
  }
  
  @media screen and (min-width: 992px) {
    /* estilos para pantallas grandes */
  }
