body {
    position: relative;
}

#project-data {
    position: absolute;
    background-color: #0d2231;
    color: white;
    bottom: 0;
    width: 100%;
    padding: 10px;
    z-index: 98;
    opacity: 0;
    height: 0;
}

#project-data span {
    color: #c8c8c8;
}

.start-button {
    display: none;
}

button.trigger {
    position: absolute;
    width: 200px;
    padding: 20px 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;

    border-radius: 0;
    border: none;
    background: #07344c; /* Old browsers */
    background: -moz-linear-gradient(top, #07344c 0%, #052233 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #07344c 0%,#052233 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #07344c 0%,#052233 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#07344c', endColorstr='#052233',GradientType=0 ); /* IE6-9 */
}

button.trigger:hover {
    background: #093c5b; /* Old browsers */
    background: -moz-linear-gradient(top, #093c5b 0%, #052233 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #093c5b 0%,#052233 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #093c5b 0%,#052233 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#093c5b', endColorstr='#052233',GradientType=0 ); /* IE6-9 */
}

@media (max-width: 940px) { 
    button.trigger {
        width: 100%;
        height: 100%;
        opacity: 0;
    }        
} 