.verticalCenter {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.verticalCenter a {
    text-decoration: none;
}

#siteTitle {
    width: 450px;
    letter-spacing: .135em;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    border-right: .15em solid #ebc034;  /*カーソル風に*/
    transition: all 1.0s ease;
	/*-webkit-transition: all 1.0s ease;
	-moz-transition: all 1.0s ease;
	-o-transition: all 1.0s ease;
    -ms-transition: all 1.0s ease;*/
    animation:
        typing 1.5s steps(12, end),
        blink-caret 1s step-end infinite;
}
/*Disable Animation on mobile*/
@media screen and (max-width: 450px) {
    #siteTitle {
        border-right: none;
        animation: none;
        white-space: normal;
        width: 60%;
    }
}

.socialIcon {
    margin-left: -2px;
    margin-right: -2px;
    border-radius: 8px;
    padding: 13px;
    fill: none;
    stroke: var(--text-color);
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: floatUp 1s ease;
}
.socialIcon:hover {
    stroke: #ebc034;
    background-color: var(--hover-bg-color);
}

.footer {
    overflow:hidden;
    text-align: center;
    max-width: 400px;
    max-height: 60px;
    width: calc(100% - 20px);
    opacity: .4;
    background-image: linear-gradient(to right, var(--text-color) 75%, rgba(255,255,255,0) 0%);
    background-position: top;
    background-size: 30px 1px;
    background-repeat: repeat-x;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.footerHiddenInfoLobi {
    width: calc(50% - 40px);
    display: inline-block;
    opacity: 0;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    min-height: 45px;
    max-width: 180px;
    margin-bottom: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.footerHiddenInfo {
    width: calc(50% - 40px);
    display: inline-block;
    opacity: 0;
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    min-height: 45px;
    max-width: 150px;
    margin-bottom: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.footerProfilePic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: solid var(--text-color) 2px;
    position: absolute;
    left: 0;
    top: 0;
}
.footer p {
    margin: 0;
}
.footer p:first-child:after {
    font-size: 0;
    content: "Follow me on Twitter or Lobi"
}
.footer:hover {
    background-image: none;
    border-radius: 20px 20px 0 0;
    max-height: 200px;
    opacity: 1;
    background-color: var(--navbar-bg-color);
    max-width: 600px;
}
.footer:hover p:first-child {
    font-size: 0;
}
.footer:hover p:first-child:after {
    font-size: 1rem;
}
.footer:hover .footerHiddenInfo {
    opacity: 1;
}
.footer:hover .footerHiddenInfoLobi {
    opacity: 1;
}

@keyframes fadeTitle {
    from {
        font-size: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*キーボードのタイピング風に描画*/
@keyframes typing {
    from {
        width: 0
    }to {
        width: 450px;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: #ebc034;
    }
}

@keyframes floatUp {
    from {
        opacity: 0;
        margin-top: 50px;
    }
    to {
        opacity: 1;
        margin-top: 0;
    }
}