@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
    box-sizing: border-box;
}
*{
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
button{
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.32,2,.55,.27);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}
h1, h2, h3, p{
    text-align: center;
    padding: 0;
    margin: 0;
}
h1{
    font-weight: 800;
}
h2{
    font-weight: 700;
}
h3{
    font-weight: 600;
}
p{
    font-weight: 600;
}
body{
    display: grid;
    place-content: center;
    min-height: 100vh;
    background: #fee365;
}
canvas{
    box-sizing: border-box;
    border: 5px solid black;
    border-radius: 25px;
}
main, article{
    display: grid;
    place-content: center;
}
.botones{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
dialog div{
    display: grid;
    place-content: center;
}
#numero-texto{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    gap: 1rem;
}
#numero{
    color:orange;
}
.canvas-container{
    background-color: white;
    border-radius: 25px;
}
main, header{
    width: 100%;
    background-color: white;
    border-radius: 25px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
}
button:active{
    transform: rotate(-4deg) translateY(-4px);
}
button:hover{
    transform: rotate(4deg) translateY(-4px);
}
dialog div button, .botones button{
    padding: 0.3rem 0.2rem;
    border-radius: 0.3rem;
}
.red{
    background-color: #f74545;
}
.green{
    background-color: #45f7a8;
}
dialog{
    border-radius: 25px;
    background-color: white;
    padding: 1rem;
    box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 17px -1px rgba(0,0,0,0.75);
}