@font-face {
    font-family: "GillSansMTPro-Medium";
    src: url(fonts/GillSansMTPro-Medium.otf) format("truetype");
}

html {
    width: 100%;
    height: 100%;
    background: url(images/background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {

}

#names {
    width: 900px;
    margin-top: 70px;
    /*float: left;*/
}

.nameEntry {
    width: 330px;
    display: block;
    float: left;
    text-decoration: none;
    text-shadow: 2px 2px 10px #222;
    color: #fff;
    font-family: GillSansMTPro-Medium, Arial, Helvetica, sans-serif;
    margin: 0px 30px 50px 30px; /*top right bottom left*/
}

.nameEntry h1 {
    font-size: 24px;
    font-weight: lighter;
    margin-bottom: 0px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nameEntry h2 {
    font-size: 15px;
    font-weight: lighter;
    margin-top: 0px;
    letter-spacing: 2px;
}

.clear {
    height: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    clear: both;
}

#pictureWrapper {
    /*display: none; /*initial state*/
    float: right;
    max-width: 500px;
    max-height: 500px;
}

/*This is only temporary*/
#picture {
    display: none; /*initial state*/
    float: right;
    margin-right: 10%;
    margin-top: 70px;
    width: 300px;
    height: 400px;
    background: url(images/placeholder.jpg);
    /*background: url(images/chr.gif) no-repeat;*/
    border: 2px solid #fff;
    box-shadow: 2px 2px 15px #222;
  /*  -webkit-animation: divAnim 2s cubic-bezier;
    -moz-animation: divAnim 5s linear;
    -o-animation: divAnim 2s cubic-bezier;
    animation: divAnim 2s cubic-bezier;*/
}

@keyframes divAnim {
    0% {
        color: #000;
    }
    100% {
        color: #fff;
    }
}

@-webkit-keyframes divAnim {
     0% {
        top: 200%
    }
    100% {
        top: 0%;
    }
}

@-moz-keyframes divAnim {
   from {
        color: #000;
    }
    to {
        color: #fff;
    }
}

@-o-keyframes divAnim {
  0% {
        top: 200%
    }
    100% {
        top: 0%;
    }
}

#test {
    background-color: red;
    /*width: 50px;*/
    /*height: 50px;*/
}

