*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
h1{
    color: white;
}
body{
    background-color: rgb(231, 81, 106);
}
img{
    width: 25%;
}
.tak{
    background-color: green;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
}
.nie{
    background-color: red;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 20px;
}
.tak:hover{
    cursor: pointer;
    background-color: darkgreen;
    box-shadow: 0 0 10px rgb(255, 255, 255);
}
.nie:hover{
    cursor: pointer;
    background-color: darkred;
    box-shadow: 0 0 10px rgb(0, 0, 0);
}
p{
    visibility: hidden;
    color: white;
    font-size: 18px;
    text-align: center;
    width: 50%;
}