/* styles.css */

/* Estilos básicos */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../Img/fin.png);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    width: 100%;
    box-sizing: border-box;
}

input {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 10px 5px;
    box-sizing: border-box;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

button {
    padding: 10px;
    margin: 5px;
    flex: 1 1 45%;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
}

button:hover {
    background-color: #c54141;
}

#result {
    margin-top: 20px;
    font-size: 1.2em;
}

/* Estilos responsivos */
@media (max-width: 400px) {
    input {
        width: calc(100% - 20px);
    }

    .buttons {
        flex-direction: column;
    }

    button {
        width: 100%;
        margin: 5px 0;
    }
}
.fondo{
    background-image: url(../Img/minecraft.png);
}