html{
    font-size: 62.5%;
}

body{
    font-family: Arial, sans-serif;
    background-color:#000;
    margin:0;
    padding:0;
}

#header, #content{
    max-width: 600px;
    margin:0px auto;
}

#header{
    width:100%;
    background: url("../themes/babylon/assets/images/bg.png") no-repeat;
    background-size: 100% auto;
    position: relative;
    padding-top:500px;
    background-color:#FFF;
}

#header img{
    width:100%;
    position: absolute;
    top:0;
    left: 0;
    display: none;
}

#header-text{
    font-size: 2.8rem;
    text-transform: uppercase;
    color:#FFF;
    padding:650px 10% 80px 10%;
    text-shadow: 0px 0px 7px #d00303, 0px 0px 7px #d00303, 0px 0px 7px #d00303;
    font-style: italic;
}

#header-text p{
        margin-block-start: 0.85em;
    margin-block-end: 0.85em;
}

#header-text a{
    color:#000;
}

#content{
}

.project{
    width:100%;
    background-color: #000;
    font-size: 2.4rem;
    float: left;
    position: relative;
}

.project-head{
    cursor:pointer;
    cursor:hand;
    width:100%;
}

.project-head img{
    width:100%;
    height:auto;
}

.project-text{
    color:#FFF;
    width:86%;
    padding:30px 7%;
    display: none;
    background-color: #000;
    z-index: 2;
}

.project-text div{
    text-align: center;
    margin:50px 0 30px;
}

.project-text p a{
    color:#FFF;
}

.button{
    display: inline-block;
    padding:15px;
    border:5px solid #D00000;
    text-align: center;
    color:#FFF;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.5s;
}

.button:hover{
    background-color: #D00000;
    border:5px solid #fff;
}

@media only screen and (max-width: 600px) {
    #header{
        padding-top:100vw;
        background-color:#FFF;
    }

    #header-text{
        padding:100vw 10% 50px 10%;
        font-size: 4.8vw;
    }

    .project-text{
        font-size: 4.4vw;
    }
}


