
img {

    width: 200px;
    height: 200px;
    /*height: auto;*/
    border-radius: 30%;
    margin: auto;
    border-radius: 8px;
    opacity: 0.6;
}

h1,
h2,
h3 {
   
    font-family: "Dancing Script", cursive;
    border-radius: 5px;
}

h4,
h5,
h6,
p {
    font-family: "Barlow Condensed", sans-serif;
}
.navbar {

    /*border: 8px solid black;*/
    background-color: #2b014d;
    border-radius: 8px;;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 50px;
    padding-right: 20px;
    margin: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}
.header {
    width: 400px;
    /*border: 8px solid black;*/
    padding: 20px;
    /*margin: 8px;*/
    display: flex;
    opacity: 0.6;
  

}

.mitad {
    width: 1200px;
   /* border: 4px solid black;*/
    padding: 20px;
    /* margin: 8px;*/
   /* height: 900px;*/

}

.footer {
    width: 1200px;
    opacity: 0.6;
    padding: 20px;
    /*margin: 8px;*/
}

button {
    margin-top: 10px;
    padding: 8px;
    cursor: pointer;
    border-radius: 10px;
    background-color: slateblue;
    border-color: slateblue;
    color: white;
    font-size: 15px;
    padding-left: 50px;
    padding-right: 50px;
}

.contenido{
    display: none;
}
.container {
    display: grid;
    column-gap: 0px;
    grid-template-columns: auto auto auto;
    border: 6px solid;
    border-color: slateblue;
    padding: 20px;
}



.header,
.mitad,
.footer {

    display: flex;
    /* Use flexbox for inner content */
    flex-direction: column;
    /* Stack inner content vertically */
    align-items: center;
    /* Center inner content horizontally */
}

.footer {
    width: 1200px;
    /* Adjust width for footer if needed */
    background-color: lightgray;
    /* Change as needed */
}

body {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    min-height: 100vh;
    /* Full height of the viewport */
    margin: 0;
    /* Remove default margin */
}

.textocols {
    column-count: 3;
    column-gap: 40px;
    flex: 1; /* This makes all columns equal width */
    padding: 10px;
    height: 100%; /* Make sure columns take full height */
    overflow: auto;
}
.container {
  display: grid;
  grid-template-areas:
    "header header"
    "menu content"
    "footer footer";
  grid-template-columns: 1fr 3fr;
  gap: 5px;
 width: 600px;
  padding: 5px;
}
.container > div {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
.container > div.header {
  grid-area: header;
  text-align: center;
  
}
.container > div.menu {
  grid-area: menu;
}
.container > div.content {
  grid-area: content;
}
.container > div.footer {
  grid-area: footer;
}
;