﻿.center {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.scalable {
    width: 10%;
    transform-origin: bottom 0px;
}

    .scalable:hover {
        transition: transform .5s;
        transform-origin: bottom 0px;
        transform: scale(2);
    }

.MenuHead {
    color: blue;
}

#hideMe {
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}

@-webkit-keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        visibility: hidden;
    }
}

.NavMenuSplit {
    border-top: double;
    border-top-color: white;
    padding-top: 5%;
    text-align: center;
}
.sidebar {
    overflow-x: hidden;
    overflow-y: auto;
}