body {
    background-color: #092c3e;
}

.contenitore{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons a {
    display: inline-flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    font-size: 40px;
    margin: 40px;
    background-size: 100% 200%;
    box-shadow: 0 10px 10px rgba(240, 240, 240, 0.137);
    background-position: 0% 5%;
    transition: background-position 0.5s, color 0.5s;
    border-radius: 20px;
}

.icons a:nth-child(1) {
    color:#0b5eb7;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95) 50%, #0b5eb7 50%);
}

.icons a:nth-child(2) {
    color:#058ED9;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95) 50%, #058ED9 50%);
}
.icons a:hover {
    background-position: 0% 100%;
    color: #fff;
}