﻿/* Demo by http://creative-punch.net */

body {
    background: #FFF;
}

/* Menu Circular Pequeño 250px */
.circular-menu {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    position: relative;
    top: 9px;
    left: 0px;
}

.circle {
    width: 250px;
    height: 250px;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.open.circle {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.circle a {
    text-decoration: none;
    color: #001E3B;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin-left: -30px;
    margin-top: -30px;
    position: absolute;
    text-align: center;
}

    .circle a:hover {
        color: #001E3B;
    }

/**/

.menu-button {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    text-decoration: none;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #001E3B;
}

    .menu-button:hover {
        background-color: #FFFFFF;
        color: #001E3B;
    }

/* Author stuff */
h1.author {
    text-align: center;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
}

    h1.author a {
        color: #001E3B;
        text-decoration: none;
    }

        h1.author a:hover {
            color: #ddd;
        }
