@font-face {
    font-family: 'League Script';
    src: url('Bleeding_Cowboys.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'petit';
    src: url('PetitFormalScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* Reset de márgenes y padding predeterminados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo global */
body {
  font-family: Arial, sans-serif;
  background-color: #804000;
  color: #333;
  line-height: 1.6;
}

/* Estilo para el encabezado */
header {
  text-align: center;
  padding: 20px;
  background-color: #ffa420;
  border-bottom: 2px solid #ddd;
}

header img {
  width: 700px; /* Ajusta el tamaño del logo según sea necesario */
  height: auto;
}

/* Selector de idioma */
.language-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
  background-color: #804000;
}

.language-selector img {
  width: 75px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.language-selector img:hover {
  transform: scale(1.1);
}

/* Contenedor principal de enlaces */
.container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: #ffa420;
  border-bottom: 2px solid #ddd;
}

.container a {
  text-decoration: none;
  font-size: 22px;
  color: #333;
  padding: 10px 15px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
  font-family: League Script;
}

.container a:hover {
  background-color: #804000;
  color: white;
}

/* Estilo para enlaces activos (si es necesario) */
.container a.active {
  background-color: #0056b3;
  color: white;}
.link-group a {
  font-family: petit;
  font-size: 24px;
  display: grid;
  text-decoration: none;
  color: #000000;
  transition: background-color 0.3s, color 0.3s;
}
.link-group a:hover {
  background-color: #ffa420;
  color: #000000;
  font-size: 26px;
}
/* Estilo del modal */
.modal {
  display: none; /* Inicialmente oculto */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
}

/* Contenido del modal */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 50%;
  max-width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Botón de cerrar */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.contactos a {
  font-family: petit;
  font-size: 24px;
  display: grid;
  text-decoration: none;
  color:#000000;
  transition: background-color 0.3s, color 0.3s;
}

.contactos a:hover {
  background-color: #ffa420;
  color: #000000;
  font-size: 26px;
  
}
p {
  font-family: petit;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
}
.negrita {
  text-align: center;  /* Centra el contenido en línea dentro del contenedor */
}

strong {
  display: inline-block;  /* Hace que el <strong> sea un bloque en línea */
  font-size: 24px;
  font-family: petit;
  color: #ffffff;
}
