html, body{
    margin: 0 auto;
    height: 100%;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
}

#container{
    width: 800px;
}

.pole{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-image: linear-gradient(to top right, 
    rgb(240, 105, 229), 
    rgb(233, 118, 220),
    rgb(225, 130, 211),
    rgb(218, 143, 201),
    rgb(211, 156, 192), 
    rgb(203, 169, 183), 
    rgb(196, 181, 174),
    rgb(188, 194, 165),
    rgb(181, 207, 156), 
    rgb(174, 220, 146), 
    rgb(166, 232, 137), 
    rgb(159, 245, 128));
}

#question{
    display: flex;
    height: 100px;
    margin: 10px;
}

.anw{
    margin: 5px 10px;
    height: 50px;
    width: calc(50% - 22px);
    transition: 0.3s;
    cursor: pointer;
}

.anw:hover{
    transform: scale(1.09);
}