
html, body {
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    background: blanchedalmond;
}

.icon-box{
    display: flex;
    justify-content: center;
    margin: 10px;
}
.icon-size{
    border-radius: 50%;
    width: 100px;
    height: 100px;
}



.button{
    background: #039be5;
    border-radius: 5px;
    box-shadow: 2px 2px 4px gray;
    padding: 10px 10px;
    cursor: default;
    box-sizing: border-box;
    text-align: center;
    color: white;
}
.button:active{
    transform: scale(0.9, 0.9);
    transition: all 500ms;
}