@import url('https://fonts.googleapis.com/css2?family=Playball&display=swap');

* {
  box-sizing: border-box;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

a {
  text-decoration: none;
  color: white;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: white;
  background-color: black;
  height: 100%;
  margin: 0;
}

.section {
  margin-top: 2em;
}

.section>span {
  font-size: 3em;
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
  color: gold;
  text-shadow: 2px 2px 1px #781F22;
}

.collapse-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.collapse-menu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  transition: 0.3s;
}

.collapse-menu a:hover {
  color: gold;
}

.collapse-menu .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #781F22;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#container {
  transition: margin-left .5s;
  padding: 16px;
}

aside {
  background-color: #781F22;
}

header {
  background-image: url("../images/Foto01.jpg"), linear-gradient(45deg, brown, gold);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 50%;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: gold;
}

.hero-text>div {
  font-size: 1.7em;
  font-family: "Playball", cursive;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 2px 2px 1px black;
}

.column {
  float: left;
  width: 20%;
  padding: 10px;
}

.center-column {
  float: left;
  width: 60%;
}

footer {
  text-align: center;
  padding: 1em;
}

.img-responsive {
  width: 100%;
  height: auto;
  border: 2px solid gold;
  border-radius: 4px;
  padding: 2px;
  box-shadow: 2px 2px 1px white;
}

main {
  border-top: #781F22 solid 10px;
  border-bottom: #781F22 solid 10px;
}

.story>div {
  text-align: justify;
}

#go-to-menu {
  border: gold 5px solid;
  background-color: black;
  color: gold;
  margin: 0 2em;
  padding: 0.5em;
  margin-top: 2em;
  font-family: "Playball";
  font-size: 1.5em;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.scroll-images {
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}

.scroll-images>img {
  height: 8em;
  width: auto;
}

table {
  margin-top: 4em;
  width: 100%;
}

table td:nth-child(1) {
  width: 90%;
}

table tr>td {
  margin-bottom: 2em;
}

table td {
  /* border-bottom: gold 1px solid; */
  margin-bottom: 0.2em;
}

table td.menu-section {
  font-family: "Playball";
  font-size: 1.2em;
  color: gold;
  text-align: center;
}

table td:nth-child(2) {}

table td:nth-child(3) {}

.icon-bar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.socials-links {
  display: flex;
  flex-direction: row;
}

.socials-links div {
  width: 1em;
  margin: 1em;
  padding: 0.5em;
  text-align: center;
}

.icon-bar a:hover {
  background-color: #000;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .column {
    display: hidden;
  }

  .center-column {
    width: 100%;
  }

  #go-to-menu {
    border: gold 2px solid;
    background-color: black;
    color: gold;
    margin: 0 3em;
    padding: 0.2em;
    margin-top: 2em;
    font-family: "Playball";
    font-size: 1.5em;
  }

  .hero-text>img {
    width: 50%;
  }

}