#conteiner{
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    margin-left: auto;
    margin-right: auto;
  
}
#wynik,#pole{
    font-size: 25px;
    color: white;
}
input{
    font-size: 40px;
    background-size: 300% 300%;
    background: linear-gradient(60deg, rgb(46, 46, 112), rgb(141, 78, 78));
    margin: 0;
    padding: 0;
    animation: szpont 15s ease infinite;
    
}


@keyframes szpont {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}