html{
    height: 100%;
}

body {
    margin: 0;
    background-color: black;
    min-height: 100%;
    /*cursor: url('cursor-va.png'),default;*/
}


.split {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
}
  
.left {
    left: 0;
    background-image: url('contact-bg.png');
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}
  
.right {
    right: 0;
    background-color: rgb(0, 0, 0);
}

h1{
    font-family: 'Overpass', sans-serif;
    letter-spacing: 4px;
    color: white;
    display: flex;
    justify-content: center;
    font-size: 7.5vw;
}

p, a{
    color: white;
    display: inline-flex;
    font-size: 1.5vw;
    font-family: 'Libre Franklin', sans-serif;
}

.kontakt-div{
    padding-left: 10%;
}

.pocetna_back{
    margin-left: 1%;
    position: fixed;
}

.kontakt{
    font-weight: bolder;
}

@media only screen and (max-width: 768px) {
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    h1{
        padding-left: 0;
        justify-content: center;
        font-size: 12vw;
        margin-bottom: 1.5em;
    }
    .kontakt-div{
        padding-left: 0;
        justify-content: left;
        font-size: 5vw;
        display: flex;
        margin-bottom: 1.5vw;
        padding-left: 9%;
    }
    .kontakt-container{
        position: relative;
        z-index: 100;
    }
    p, a{
        font-size: 4vw;
        margin: 0;
    }
    p{
        width: 30%;
    }
    a{
        width: 70%;
    }
    .mobile-img{
        position: relative;
        z-index: 1;
        height: 65%;
        background-image: url('contact-mobile-bg.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media only screen and (min-width: 769px) {
    .mobile{
        display: none;
    }
    .desktop{
        display: block;
    }
}

.mobile{
    background-color: rgb(0, 0, 0);
    height: 100vh;
}

