/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
@import url('https://fonts.googleapis.com');

* {
    box-sizing: border-box;
}


header {
    padding:40px;
    margin-bottom: 5px;
}


/* ********************************************************************* */
/* Encabezado */

.encabezado {
    background-color: #4169E1;
    background-image: url("index/header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 95% 87%;
}

.encabezado h1{
  text-decoration: none;
    text-align: center;
    color: black;
    font-family: "Courier new", courier;
}
/* ********************************************************************* */




/* ********************************************************************* */
/* Navegador */
.navbar {
    background-color: #6495ED;
    display: flex;
    align-items: center;
    padding: 0px 60px 3px 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-family: "Courier new", courier;
    font-weight: bold;
}

/* Efecto al pasar el ratón */
.nav-links a:hover {
    color: #FFA500;
}

/* ********************************************************************* */





/* ********************************************************************* */

body {
    font-family: "Courier new", courier;
    color: white;
    background: #F6EB61;
    margin: 0;
    padding: 0px;
    line-height: 1.4; /* Improve line spacing */
    
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.cuerpo{
    display: flex;
    gap: 20px;
    padding: 0 20px;
    flex: 1; 
}


.centro{
    width: 60%;
}

.leftcolumn {
    width: 20%;
}

.rightcolumn {
    width: 20%;
}

.card {
    background-color: black;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); /* Add subtle shadow */
}


img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
}

footer {
    padding: 5px;
    text-align: center;
    background: #000000;
    margin-top: 20px;
}