#start-screen {
    position: absolute;
    z-index: 1600;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
}

#start-screen > div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: right;
    z-index: 1602;
}

#start-screen .start-bg {
    width: 100%;
    height: 100%;
    background-image: url("../skin/heroal_eingang.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1601;
}

#start-screen img {
    width: 18vw;
    height: auto;
    cursor: pointer;
    transition: 0.3s;
}

#start-screen img:hover {
    transform: scale(1.1);
}

#start-screen div div {
    display: table-row;
    padding: 2vw 2vw 2vw 1vw;
}

#start-screen div div div {
    display: table-cell;
    vertical-align: middle;
}

#start-screen h1,
#start-screen p {
    font-family: "DINPro";
    color: white;
    margin: 0;
}

#start-screen h1 {
    font-size: 3vw;
    line-height: 2.5vw;
    margin: 0 0 1vw 0;
}

#start-screen p {
    font-size: 2vw;
    line-height: 2.4vw;
    white-space: nowrap;
}

@media only screen and (min-width: 1366px) {

    #start-screen img {
        width: 13vw;
        height: auto;
    }

}

@media only screen and (min-width: 1920px) {

    #start-screen img {
        width: 10vw;
        height: auto;
    }

    #start-screen h1 {
        font-size: 3vw;
        line-height: 2.5vw;
        margin: 0 0 1vw 0;
    }
    
    #start-screen p {
        font-size: 2vw;
        line-height: 2.4vw;
    }

}