@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'adam.cg_proregular';
    src: url('adam.cg_pro-webfont.woff2') format('woff2'),
         url('adam.cg_pro-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'houseplant_demoregular';
    src: url('houseplant_demo-webfont.woff2') format('woff2'),
         url('houseplant_demo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {background: black;}


.background {background: url("omdpage4.jpg");
             width: 1000px;
             height: 640px;
             position: relative;
             margin: 0px auto;
}

.content {font-family: 'adam.cg_proregular';
          position: absolute;
          top: 35px;
          left: 600px;
          font-size: 15px;
}

.outside {font-family: 'adam.cg_proregular';
          position: absolute;
          top: 380px;
          left: 810px;
          font-size: 30px;
          color: black;
}

.outside:hover {color: #97D9FF;}

.counter {font-family: 'adam.cg_proregular';
          position: absolute;
          top: 410px;
          left: 19px;
          color: white;
          font-size: 19px;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes fadeInNumber {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Standard syntax */
@keyframes fadeInNumber {
    from {opacity: 0;}
    to {opacity: 1;}
} 

.number {font-family: 'adam.cg_proregular';
         position: absolute;
         top: 460px;
         left: 45px;
         font-size: 60px;
         color: white;
	     opacity: 0;
        -webkit-animation: fadeInNumber 6s; /* Chrome, Safari, Opera */
        animation: fadeInNumber 6s;
        -webkit-animation-delay: 6s;
        animation-delay: 6s;
        -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	    animation-fill-mode:forwards;
        -webkit-transition: -webkit-transform 2s;
        transition: transform 2s;
}


.audio {position: absolute;
        top: 20px;
        left: 20px;
        opacity: .2;
}