body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.topnav {
    overflow: hidden;
    background-color: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 7vh;
    padding: 0px 10px 0px 10px;
}

.topnav h2, h3{
    color: #000000;
    text-align: center;
    margin: 10px auto 10px 10px;
}

.topnav a {
    text-align: center;
    color: #000000;
    text-decoration: none;
    padding: 10px;
}


.splitImageDiv{
    display: flex;
}

.splitImageDiv section{
    flex: 1;
    height: 93vh;
    display: flex;
    filter: grayscale(0%);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.splitImageDiv section:first-child{
    background-image: url(/images/prog.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.splitImageDiv section:last-child{
    margin-left: -10vw;
    background-image: url(/images/photo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 40%;
    clip-path: polygon(10vw 0, 100% 0, 100% 100%, 0 100%);
}

.splitImageDiv a {
    text-decoration: none;
    margin: auto;
    padding: 10px;
    background-color: #838383;
    color: #fff;
    border-style: solid;
    border-color: #a0a0a0;
    border-radius: 2px;
    font-size: 2rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.splitImageDiv a:hover {
    background-color: #949393;
    color: #fff;
}

.blur{
    display: flex;
    height: auto;
    width: 100%;
    background-color: 255,255,255, 1;
    backdrop-filter: blur(3px);
}

.splitImageDiv section:hover{
    filter: grayscale(100%);
}

@media only screen and (max-width: 768px) {
    .splitImageDiv {
        flex-direction: column;
        height: 93vh;
    }

    .splitImageDiv section:first-child{
        height: 50vh;
    }

    .splitImageDiv section:last-child{
        height: 50vh;
        margin-left: 0vw;
        clip-path: none;
    }
}