body
{
    background-color: teal;
}

#przycisk
{
    width: 6%;
    border: 2px solid white;
    padding: 30px;
    margin: 60px auto;
    text-align: center;
    display: table;
    background-color: brown;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    border-radius: 6px;
}

#przycisk:active
{
    position: relative;
    top: 3px;
    transition: 0.5s;
}

#przycisk2
{
    width: 6%;
    border: 2px solid white;
    padding: 30px;
    margin: 20px auto;
    text-align: center;
    display: table;
    background-color: green;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    border-radius: 6px;
}

#przycisk2:active
{
    position: relative;
    top: 3px;
    transition: 0.5s;
}

.bigRed
{
    color: red;
    font-size: 50px;
    margin: auto;
    text-align: center;
    margin-top: 50px;
}
.smallBlue
{
    color: blue;
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
}