@import url('https://fonts.cdnfonts.com/css/digital-numbers');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    color-scheme: dark light;
}

body{
    display: grid;
    place-content: center;
    height: 100dvh;
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
main{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
h1{
    text-transform: uppercase;
    font-size: 50px;
    
}
h2{
    text-transform: uppercase;
    strong{
        color: red;
        font-size: 40px;
    }
}
#ganador{
    font-size: 124px;
    font-weight: bold;
    font-family: 'Digital Numbers';
    color: rgb(89, 255, 0);
    margin-top: 90px;
}
#btnGanador{
    border: 0;
    border-radius: 14px;
    background-color: #006eff;
    color:white;
    font-size: 30px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    margin-top: 100px;
}