@charset "utf-8";
/* CSS Document */
/* Add a black background color to the top navigation */
.topnav {
  background-color: #008A83;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #466CFF;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}
body {background-color: #0D7820;}
footer {
  background-color: #60B148; /* Dark background color */
  color: #AE5CB3White text color;
  padding: 10px; /* Spacing inside the footer */
  text-align: center; /* Center-align text content */
  font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"sans-serif; /* Font style */
  font-size: 20; /* Font size */
  
  left: 0;
  bottom: 0;
  width: 100%;
    }
    header {
  background-color: #E5E569; /* Dark background */
  color: lightpink; /* White text */
  padding: 20px; /* Spacing inside the header */
  text-align: center; /* Center-align text */
}
img {
  border-radius: 20;
}
.modo-oscuro {
    background-color: #222;
    color: white;
}
/* The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 20%;
  padding: 10px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8;
  cursor: pointer;
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}


        