.center-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 90vh;
    font-size: 25px;
}
.image {
    vertical-align: middle;
    width: 120px;
    margin-right: 10px;
}

.image-icons {
    margin: 5px;
    font-size: 48px;
    color:white;
}


/*  style by https://manuelpinto.in/
    https://codepen.io/P1N2O/pen/pyBNzX
 */
body {
    background: linear-gradient(-45deg, #e12d1b, #0075dc, #ff321f, #0057a8);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.center-screen h4 {
    font-size: 0.7em;
}
