html,body {
    background-color: #E9E9E9;
    font-family: Montserrat, sans-serif;
    height: 100%;
    margin: 0;
}
.cont {
    position: relative;
    top: 30%;
    text-align: center;
}
.cont-title {
    display: inline-block;
    position: relative;
}
.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 5em;
    color: grey;
    margin-bottom: 1em;
    overflow: hidden;
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
}

.title:hover {
    color: grey;
}

.title::before {
    content: attr(data-letters);
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: black;
    white-space: nowrap;
    width: 0%;
    -webkit-transition: width 0.5s 0.1s;
    transition: width 0.5s 0.1s;
}

.title:hover::before {
    width: 100%;
}

.title span {
    font-size: 20%;
    font-weight: 400;
    position: relative;
    display: block;
    color: grey;
    opacity: 0;
    -webkit-transform: translate3d(0,-2rem,0);
    transform: translate3d(0,-2rem,0);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
}

.title:hover span {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.links {
    text-align: center;
    display: block;
    list-style: none;
    padding: 0;
}
.links li {
    display: inline-block;
    margin: 0.2em;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transform: scale(0.75,0.75);
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
.links li:hover {
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
}
.links li:active {
    -webkit-transform: scale(0.875,0.875);
    transform: scale(0.875,0.875);
}

.thumb {
    border: 5px solid white;
    border-radius: 5px;
}
