@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');

.content-section {
  display: none;
}
.content-section.active {
  display: block;
}

  #music-btn {
    margin-top: 0.5em;
    padding: 0.5em 1em;
    background-color: #5A3A02;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: "Indie Flower", Cursive, serif;
    font-size: 1em;
    transition: background-color 0.3s ease;
  }

body {
  margin: 0;
  }
  
  h3{
    color: white;
    font-weight: bold;
  }
/*Everything goes inside here.*/
.wrapper {
  width: 900px;
  margin: 0 auto;
  }
  
.sidebar-img, .footer, .title, .links, .box {
  margin-top: 25px;
  }
  
.title, .links, .footer {
  text-align: center;
  }
  
/*Navigation links.*/
.links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  
.links li {
  display: inline-block;
  }

/*Some fancy code for fun, to add special characters around the navigation links. Change content to "" if you don't want these.*/
.links li:before {
  content: "ã€Œ";
  }
  
.links li:after {
  content: "ã€ âˆ· ";
  }
  
.links .last:after {
  content: "ã€";
  }
  
.links li:before, .links li:after {
  letter-spacing: 0.1em;
  }
  
/*Basic box code that is used for all content boxes on the page.*/
.box {
  border: 1px solid black;
  padding: 0.5em 1em;
  }
  
/*Goes inside the box class. Not given any style by default, but can be used for stuff like fancy borders.*/
.inner {
  
  }
  
/*Prevent image overflow.*/
.box img, .sidebar img {
  max-width: 100%;
  height: auto;
  }
  
/*Wrapper for the sidebar.*/
.sidebar {
  width: 200px;
  float: left;
  }
  
/*Container for the sidebar image.*/
.sidebar-image {
  border: 1px solid black;
  }
  
/*Remove extra padding line at the bottom of the image.*/
.sidebar-image img {
  display: block;
  }
  
/*This is where the title, navbar, and main content all go.*/
.main-wrapper {
  margin-left: 225px;
  }
  
/*Two columns by default. The "single-column" class can be added to make it one column.*/
.main {
  columns: 2;
  column-gap: 25px;
  }
  
/*Make sure boxes don't spread over multiple columns.*/
.main .box {
  display: inline-block;
  }
  
.single-column {
  columns: 1;
  }
  
.footer {
  margin-bottom: 25px;
  }
  
@media(max-width:915px) {
  .wrapper {    
    width: 95%;
    }
    
  .main-wrapper {
    width: calc(100% - 225px);
    }
  }
  
@media (orientation: portrait), (max-width: 480px) {
  .wrapper {
    width: 100%;
    }
  
  .main-wrapper, .sidebar, .footer {
    margin: 0 auto;
    width: 90%;
    }
  
  .sidebar {
    float: none;
    display: block;
    }

  .sidebar-image {
    margin: 0 auto;
    width: 33%;
    margin-top:25px;
    }

  .sidebar .sidebar-image img {
    width: 100%;
    }
    
.footer {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.footer .box {
  width: auto;
  max-width: 600px;
}

  
  }

body {
  background: url("./backgrounds.gif") repeat-x fixed;
  background-size: auto 100%;
  font-family: "Indie Flower", Cursive, serif;
  font-size: 1.15em;
  }
  
  .main .box.wide {
  width: 100%;
}


.smiski-pic {
  width: 400px; 
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

  
/*In order to use a custom image texture for the borders, skin uses the "inner" class.*/
.inner {
  color: white;
  background: #1a1a1a;
  padding: 0.5em 1em;
  border: 1px solid #111;
  }
  
.sidebar-image .inner {
  padding: 0;
  }
  
.box, .sidebar-image {
  background: linear-gradient(rgb(225,145,5,0.4), rgb(225,145,5,0.4)), url("/wood.gif"); /*Custom border with wood texture.*/
  padding: 0.2em;
  }
  
a {
  color: #cfcfcf;
  }
  
/*Alternative nav link decoration.*/
.links li:before, .links .last:after {
  content: "";
  }
  
.links li:after {
  content: " :: ";
  }
  
.links li:before, .links li:after {
  word-spacing: 0.375em;
  }
  
.links li {
  margin-left: 0.375em;
  }
  
.double-columns {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: stretch; /* ya está correcto */
  min-height:200px;
}


.double-columns .box {
  height:100%;
  width: 48%;
  display: block; /* esto es importante para evitar conflictos con inline-block */
}

.footer {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.footer-box {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.footer-box .inner {
  background: #1a1a1a;
  padding: 0.5em 1em;
  border: 1px solid #111;
  text-align: center;
  color: white;
}

