* {
    padding:0;
    margin:0;
}

html, body {
    font-family:Arial, sans-serif;
    font-size:12px;
    overflow:hidden;
}

#box-content-up {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:50%;
    transition:1s;
    text-align:center;
    background:black;
}

#box-content-down {
    position:fixed;
    top:50%;
    left:0;
    width:100%;
    height:50%;
    transition:1s;
    text-align:center;
}

#box-content-up figure {
    position:absolute;
    bottom:0;
    left:50%;
    width:20vw;
    margin-left:-10vw;
}

#box-content-down figure {
    position:absolute;
    top:0;
    left:50%;
    width:20vw;
    margin-left:-10vw;
}

#box-content-up figure img,
#box-content-down figure img{
    position:relative;
    width:100%;
}

#line-logo {
    position:absolute;
    top:50%;
    left:50%;
    width:20vw;
    height:20vw;
    margin-left:-10vw;
    margin-top:-10vw;
    z-index:2;
    border:1px solid #fff;
}

#title-row {
    position:absolute;
    width:100%;
    bottom:20vh;
    text-align:center;
    z-index:3;
}

#title-row h3 {
    text-transform:uppercase;
    font-size:2vw;
    color:gray;
    font-weight:normal;
    letter-spacing:10px;
}

#title-row h3 div {
    display:inline-block;
}

@media screen and (max-width:800px) {
    #box-content-up figure {
        width:50vw;
        margin-left:-25vw;
    }

    #box-content-down figure {
        width:50vw;
        margin-left:-25vw;
    }

    #line-logo {
        width:50vw;
        height:50vw;
        margin-left:-25vw;
        margin-top:-25vw;
    }

    #title-row h3 {
        font-size:5vw;
    }
}

@media screen and (max-height:800px) {
    #box-content-up figure {
        width:50vw;
        margin-left:-25vw;
    }

    #box-content-down figure {
        width:50vw;
        margin-left:-25vw;
    }

    #line-logo {
        width:50vw;
        height:50vw;
        margin-left:-25vw;
        margin-top:-25vw;
    }

    #title-row h3 {
        font-size:5vw;
    }
}

@media screen and (orientation:landscape) and (max-height:800px) {
    #box-content-up figure {
        width:30vw;
        margin-left:-15vw;
    }

    #box-content-down figure {
        width:30vw;
        margin-left:-15vw;
    }

    #line-logo {
        width:30vw;
        height:30vw;
        margin-left:-15vw;
        margin-top:-15vw;
    }

    #title-row h3 {
        font-size:3vw;
    }

    #title-row {
        bottom:10vh;
    }
}




/*#box-content {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    transition:1s;
    z-index:99999;
    text-align:center;
    background:white;
}

#box-content figure {
    position:absolute;
    top:40%;
    left:50%;
    width:20vw;
    height:20vw;
    margin-left:-10vw;
    margin-top:-10vw;
    z-index:99999;
}

#box-content figure img {
    position:relative;
    width:100%;
}

#box-content .title {
    position:absolute;
    width:100%;
    bottom:35vh;
}

#box-content h3 {
    text-transform:uppercase;
    font-size:3.2rem;
    color:gray;
    font-weight:normal;
    letter-spacing:10px;
}

#box-content .title h3 div {
    display:inline-block;
}*/