@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root
{
    --backgroundMercadoLibre: rgb(#EBEBEB);
    --amarilloMercadoLibre: rgb(#FFE600);
    --textoNegro: rgb(#000);
    --textoAzul: rgb(#0D0080);
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    width: 100%;
    background-color: #EBEBEB;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{
    background-color: #FFE600;
    width: 100%;
    text-align: center;
}

h1{
    padding: 20px 0px;
    color: #0D0080;
    font-family: "Oswald", sans-serif;
    font-size: 2.2rem;
}

.readerContainer{
    margin: 10px;
    text-align: center;
}

.readerContainer p{
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-size: 1.25 rem;    
}

.informacionEscaneada h1{
    color: #000;
}

.informacionEscaneada {
    font-family: "Roboto Condensed", sans-serif;
}

.mainContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mainContainer img{
    margin: 20px 0px;
    width: 30%;
}

#result{
    font-size: 3rem;
    font-weight: 600;
    color: blue;
}

#datetime{
    font-size: 1.5rem;
}

.mainContainer__botones{
    display: flex;
    justify-content: center;
    gap: 10px;
}

.mainContainer__botones button, button{
    padding: 10px 20px;
    border-radius: 100px;
    border: 0px;
    text-decoration: none;
    background-color: #3483FA;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease-in;
}

.mainContainer__botones button:hover, button:hover{
    background-color: #2968C8;
}

.buttonShow{
    margin-top: 20px;
}



/*---------- Mobile ----------- */
@media(max-width: 800px)
{
    h1{
        font-size: 1.1rem;
        padding: 10px 0px;
    }

    #result{
        font-size: 2rem;
    }
}

