@import url('/css/all.css');
@import url('https://fonts.googleapis.com/css?family=Raleway');

* {
    margin: 0;
    padding: 0;
}


body {
    color: #aaa;
    font-family: 'Raleway', sans-serif;
    background: #4d4d4d;



}

.page {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    /* FF3.6-15 */
    background: -moz-linear-gradient(-45deg, #4f4f4f 0%, #373737 50%, #282828 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-linear-gradient(-45deg, #4f4f4f 0%, #373737 50%, #282828 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: linear-gradient(135deg, #4f4f4f 0%, #373737 50%, #282828 100%);
    /* IE6-9 fallback on horizontal gradient */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4f4f', endColorstr='#282828', GradientType=1);




}

.content {
    display: flex;

    flex-direction: column;
}

a {
    -moz-transition: color 0.2s ease, border-bottom 0.2s ease;
    -webkit-transition: color 0.2s ease, border-bottom 0.2s ease;
    transition: color 0.2s ease, border-bottom 0.2s ease;
    text-decoration: none;
    border-bottom: dotted 1px;
    color: inherit;
}
a:hover {
    color: #ffffff;
}
.icon {
    text-decoration: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    position: relative;

    display: inline-block;
    border: solid 1px;
    border-radius: 100%;
}
.icon:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    text-transform: none !important;

    display: block;
    font-size: 1.25em;
    width: 2em;
    height: 2em;
    text-align: center;
    line-height: 2em;
}

.icons {
    padding-top: 2em;

    cursor: default;
    list-style: none;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-flex-flow: row wrap;
    justify-content: space-between;
}

/*
.icon > .label {
    display: none;
}
*/

.label {
    width: 120px;

    padding: 15px 0;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */

    position: absolute;
    top: 100%;
    left: 50%;

    visibility: hidden;
    text-align: center;
    border-radius: 6px;

    z-index: 1;
}

.icon:hover > .label {
    visibility: visible;
    transition: visibility 0.2s ease-in-out, color 0.2s ease-in-out;
}
