/* Reset de estilos */
body, h1, h2, p, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

header {
  background-image: url('images/fondo.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0;
  border-bottom: 2px solid #f39c12;
  transition: background-position 0.3s ease-in-out;
}

header:hover {
  background-position: center 10%;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  flex-direction: column;
}

.content-container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.common-container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  border: 2px solid #f39c12;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button {
  margin: 10px;
  padding: 10px 25px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

/* Estilo para el botón cuando el canal está en línea */
.online {
background-color: #28a745;
}

.button:hover {
  background-color: #2980b9;
}

.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.image-box {
  text-align: center;
  margin: 15px;
  flex-basis: calc(50% - 30px);
}

.image-box img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.image-box h2 {
  margin-top: 15px;
  font-size: 1.8rem;
  color: #333;
}

.image-box p {
  margin-top: 10px;
  color: #777;
}

.image-box a {
  display: inline-block;
  margin-top: 15px;
  background-color: #f39c12;
  color: white;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.image-box a:hover {
  background-color: #e67e22;
}

.sponsor-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #f39c12;
}

body {
  cursor: url('images/coco.png') 15 15, auto;
}
