body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #010722f6;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body a {
    color:  rgb(248, 162, 3);
}
header, .fixed-image, main, footer,form {
    max-width: 900px;
    margin: 0 auto;
    width: 95%;
    border-radius: 10px;
}
header {
    position: fixed; 
    background:rgba(24, 74, 212, 0.459);
   /* background:rgb(248, 162, 3);*/
    backdrop-filter: blur(10px);
    z-index: 2; 
}
nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
nav a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
}
nav a:hover {
    background-color: rgb(248, 162, 3);
    color: white;
}
.fixed-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-top: 100px;
}
.fixed-image2 {
    max-width: 150px;
    margin: 0 auto;
    width: 95%;
    border-radius: 10px;
    height: 150px;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
.fixed-image3 {
    max-width: 600px;
    margin: 0 auto;
    width: 95%;
    border-radius: 10px;
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
main {
    margin-top: 20px;
    text-align: center;
}
section {
    margin: 100px 0; 
  
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 20px;
    padding: 10px;
}
.card {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-style:solid;
    border-color: rgb(248, 162, 3);
    border-width: 1px;
}
Form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    background-color: rgba(24, 75, 212, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    max-width: 300px;  
}
label, input,span {
    width: 100%;
    max-width: 300px;
    margin: 5px 0;
    height: 25px;
    text-align:left;
}
button {
    background-color:rgb(248, 162, 3);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
   
}
.g-recaptcha {
    margin-bottom: 10px;
}
footer {
    margin-top: 60px;
    background: #010722f6; 
    color: white;
    text-align: center;
    padding: 15px 0;
}
footer a {
    color: white;
}
:target::before {
    content: "";
    display: block;
    height: 110px; 
    margin: -110px 0 0; 
  }
  #cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 980px;
    background-color: rgba(0, 0, 0, 0.932);
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 3;
    height:140px;
  }
  #cookie-banner p {
    display: inline;
    margin-right: 10px;
  }
  #cookie-banner a {
    color: white;
  }
  #cookie-banner button {
    background-color: #ffcc00;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 5px;
  }
  
  .experienceSection {
    margin: 0px auto;
    text-align: left;
  }
  
  /* ul */
  .experienceList {
    border-inline-start: 2px solid rgb(248, 162, 3);
    position: relative;
    list-style:none;
  }
  
  .experienceItemList {
    padding-left: 10px;
    padding-bottom: 10px;
  }
  
  .experienceItemList time {
    color:rgb(248, 162, 3);
  }
  
  .experienceItemList h3 {
    color: rgba(24, 75, 212, 0.8);
    font-size: var(--ExperienciaTitleSize);
    text-wrap: pretty;
  }
  
  .experienceItemList p {
    color: white;
    margin: 0 0 20px 0;
    font-size: var(--ExperienceParagraphSixe);
  }
  
  .decorativeCircleList {
    height: 20px;
    width: 20px;
    background-color: rgb(248, 162, 3);
    border-radius: 50%;
    position: absolute;
    left: -11px;
   /* margin-top: 0px; */
  }


  .carousel {
    width: 100%;
    overflow: hidden;
    position: relative; 
    display: flex; 
    justify-content: center;
    align-items: center; 

}

.carousel img {
    width: 60%;
    display: none;
    animation: zoom-in 1s ease-in-out;
    border-radius: 10px;
}

.carousel img.active {
    display: block;
 

}
@keyframes zoom-in {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

@keyframes zoom-out {
  from { transform: scale(1.2); }
  to { transform: scale(1); }
}
table {
  border-collapse: collapse; /* Elimina el espacio entre los bordes de las celdas */
  width: 60%; /* Opcional, ajusta el ancho al contenido o al contenedor */
}

table, th, td {
  border: 2px solid white; /* Borde blanco de 2px */
}

th, td {
  text-align: left; /* Alinea el texto a la izquierda */
  padding: 8px; /* Espaciado interno para una mejor presentación */
}

table {
  background-color: rgb(102, 109, 3); /* Opcional, da color de fondo a la tabla */
}
table caption {
  color: white;
  text-align: left;
  font-size: 18px; /* Opcional: ajusta el tamaño de la fuente */
  font-weight: bold; /* Opcional: negrita para mayor énfasis */
}
