/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../images/PatternGyG.svg') repeat;
}

p {
	margin: 20px 60px;
}

/* Container */
.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
	margin: auto;
	background: url('../images/ReglaGyG333.svg') top right repeat-y;
	background-size: 50px auto;
    background-color: #fc0;
    padding: 20px 20px 80px 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

/* Logo */
.logo img {
    width: 260px;
    height: auto;
    margin-bottom: 0;
}

/* Title */
h1 {
    font-size: 24px;
    color: #333;
	margin: 0 60px 30px 60px;
}

.links {
    display: flex; /* Activa Flexbox */
    flex-direction: column; /* Alinea los botones en columna */
    align-items: center; /* Centra los botones horizontalmente */
    gap: 10px; /* Espaciado entre los botones */
}

/* Links */
.links a {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #333;
	width: 75%;
    padding: 15px;
    
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.links a:hover {
    background-color: #666;
}

.qr-code {
    text-align: center;
    margin-top: 20px;
}

.qr-code img {
    width: 150px; /* Ajusta el tamaño */
    height: auto;
    margin: 10px 0;
}


@media (max-width: 768px) { /* Ajusta según el tamaño que consideres "pantalla pequeña" */
html, body {
    background-color: #fff; /* Cambia esto por el color de tu paleta */
}
	
.container {
    width: 100%;
    border-radius: 0;
}
}
