body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    background-image: url("fondo.jpg"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor central */
.container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 40px;
    border-radius: 15px;
}

/* Título */
h1 {
    color: #1e7d3a; 
    margin-bottom: 30px;
}

/* Botones */
.botones {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 20px;
    justify-content: center;
}

button {
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #28a745; 
    color: white;
    transition: 0.3s;
}

button:hover {
    background-color: #1e7d3a; 
}
.btn {
    display: inline-block;
    padding: 15px;
    width: 150px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    background-color: #28a745;
    color: white;
    transition: 0.3s;
}

.btn:hover {
    background-color: #1e7d3a;
}