/* Master */
* {
  margin: 0;
  padding: 0;
}
body,
html {
  font-family: 'Open Sans', sans-serif;
  height: 100%;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgb(54, 54, 54);
}
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(8, 255, 21);
}
/* Header */
#hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/hero.webp');
  height: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
h1 {
  font-size: 50px;
}
.hero-text {
  text-align: center;
  color: white;
  position: absolute;
  font-size: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  margin-bottom: 20px;
}
.hero-button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
  margin-top: 25px;
}
.hero-button:hover {
  background-color: #555;
  color: white;
}
/* Navigation */
.topnav {
  background-color: #333;
  padding: 14px 0px;
  overflow: hidden;
  padding-left: 0px;
  width: 100%;
  text-transform: uppercase;
}
.topnav a {
  padding: 14px 16px;
  font-size: 17px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-align: center;
}
.topnav a:hover {
  background-color: rgb(107, 212, 62);
  color: rgb(255, 255, 255);
}
@media (max-width: 755px) {
  .topnav a {
    display: block;
  }
  .topnav {
    padding: 0px;
  }
}
/* Container */
.container {
  margin: 0px 100px;
}
.container h3 {
  text-transform: uppercase;
}
.container h4 {
  color: rgb(50, 168, 58);
}
@media (max-width: 1340px) {
.container hr {
  display: none;
}
}
@media (max-width: 1344px) {
  .container {
    margin: 30px 20px;
  }
}
.center-text {
  text-align: center;
  padding: 30px 0px;
  text-transform: uppercase;
}
@media (min-width: 1344px) {
  .information {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 40px;
    border-bottom: 1px solid rgb(230, 230, 230);
    padding: 60px 0px;
  }
}
.information img {
  border-radius: 5%;
  width: 100%;
  height: 100%;
}
/* Spanish link */
.spanish {
  color: rgb(107, 212, 62);
  text-decoration: none;
}
/* Container - Gallery */
.main-gallery {
  width: 100%;
  height: 40%;
}
div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}
div.gallery:hover {
  border: 1px solid #777;
}
div.gallery img {
  width: 100%;
  height: auto;
}
div.desc {
  padding: 15px;
  text-align: center;
}
/* Cinema */
.videogallery {
  padding-top: 20px;
  display: block;
  text-align: center;
}
.videogallery video {
  padding: 20px;
}
@media (max-width: 755px) {
  .videogallery video {
    padding: 10px;
    width: 100%;
  }
}
/* Footer */
.footer {
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  font-size: 17px;
  padding: 10px 0px;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  color: rgb(107, 212, 62);
}
