/*
 * Base Styles
 */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:#2A3B8D ;
    background-position: center;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: "Tagesschrift", system-ui;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    margin-left: 1%;
    color: #F0F4FF;


}        

p {
    font-family: "Tagesschrift", system-ui;
    font-weight: 350;
    font-style: normal;
    color: #F0F4FF;
    font-size: large;
    text-align: justify;
    margin-left:2% ;
    padding: 2%;
}

nav {
    background-color: #BCC5E6;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    opacity: 0.9;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  
}

nav li {
    display: inline-block;
    justify-content: space-evenly;
    width: auto;
}

nav a {
    font-family: tagesschrift, system-ui;  
    text-decoration: none;
    color: #ffffff;
    
}
header {
    background-image: url(../assets/images/portada-recorte.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 0%;
    margin-left: 0%;
    width: 100vw;
    height: 100vh;
}

section{
  margin-top: 1rem;
}
footer {
    background-image: url('../assets/images/tambores.png');
    color: #F0F4FF;
    text-align: left;
    padding: 10px 0;
    margin-top: 1%;
}

#fotoHernan {
    border-radius: 15px 2px;
   
}



#Copyright {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#border{
    border: solid 4px #BCC5E6;
}
h4 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-style: italic;
    color: white;
}



/*
 * Media Queries for Mobile
 */
@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }  

  body {
    background-color:#2A3B8D;
    position: relative;
    margin-top: 4%;
    overflow-x: hidden;
  }
  
 header{
    background-image: url(../assets/images/portada.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 0%;
    padding-top: 2% ;
    width: 100vw;
    height: 100vh;
 }

  .carousel-item img {
    width: 80% !important;
    height: 50%;
  }

  .video-container{
    position: relative;
    padding-bottom: 70%;
    padding-top: 0%;
    height: 0;
    overflow: hidden;
  }
   
  .video-container iframe {
    position: absolute;
    top: 1%;
    left: 0%;
    width: 100%;
    height: 100%;
    padding: 2px;
  }
}