body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #edbc54c9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.caja-contenedora {
  text-align: center;
  padding: 20px;
  max-width: 400px;
  width: 100%;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
;
}

.titulo {
  margin-bottom: 5px;
  font-size: 28px;
  color: #222;
  font-style: italic;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.subtitulo {
  margin-bottom: 25px;
  font-size: 16px;
  color: #666;
}

.botones {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: bold;
}

.youtube {
  background: #fff;
  color: #ff0000;
  border: 2px solid #ff000063;
}

.instagram {
  background: #fff;
  color: #E1306C;
  border: 2px solid #e1306b6b;
}

.facebook {
  background: #fff;
  color: #1877F2;
  border: 2px solid #1876f275;
}

.especial {
  background: #fff;
  color: #7f6309;
  border: 2px solid #00000059;
}

.btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* Efecto hover */
.btn:hover {
  background: #eee;
  transform: scale(1.05);
}

@media (max-width: 900px) {


  body {
    background-color: #dbb95d;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
    
  }

  .caja-contenedora {
    text-align: center;
    padding: 30px;
    width: 90%;
    max-width: 300px;
    background: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;

    position: relative;
    bottom: 70px;
  }
}
