@charset "utf-8";
/* CSS Document */
body
{
    text-align: center;
    font-family: 'Inconsolata', monospace;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    height: 100vh;
}

.logo
{
    width:100px;
    margin-bottom:10px;
}

.icon
{
    height:40px;
}

a:hover
{
    text-decoration:none;
}

.bt
{
    cursor:pointer;
    transition:all ease-in-out 0.4s;
    border: 1px solid rgba(0,0,0,1);
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    padding:0px;
    color:rgba(0,0,0,1);
}

.bt:hover
{
    transition:all ease-in-out 0.4s;
    background:rgba(0,0,0,1);
    color:rgba(255,255,255,1);
}

.vCard
{
    transition:all ease-in-out 0.4s;
    background:rgba(255,255,255,1);
    padding:30px;
    position:fixed;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.vDis
{
    transition:all ease-in-out 0.4s;
    bottom:-100vh;
}

.vAct
{
    transition:all ease-in-out 0.4s;
    bottom:0px;
}

.line
{
    border-top:1px solid rgba(0,0,0,1);
    width:100%;
    height:1px;
}

.job
{
    margin-top:20px;
}

.name
{
    margin-top:20px;
}

.copy {
    font-size: 10px;
    border-top: 1px solid rgba(0,0,0,0.25);
    margin: 30px -30px;
    padding-top: 30px;
    margin-bottom: 0px;
}

.vCard [class^="icon-"], [class*=" icon-"]
{
    color:rgba(0,0,0,0.25);
}