/* General */

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family:
        "Arial Rounded MT Bold",
        Arial,
        Helvetica,
        sans-serif;

    overflow: hidden;
}

/* Links */

a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

/* Main title */

.main {
    position: absolute;
    top: 20px;
    left: 50%;

    width: 500px;
    margin-left: -250px;

    text-align: center;
    z-index: 10;
}

h1 {
    font-size: 56px;
    margin: 0;
}

h2 {
    font-size: 46px;
    margin: 0;
}

/* Split screen */

.split {
    position: fixed;
    top: 0;

    width: 50%;
    height: 100%;

    overflow: hidden;

    z-index: 1;

    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.split:hover {
    opacity: 0.8;
}

/* Left side */

.left {
    left: 0;
    background-color: #111;
}

/* Right side */

.right {
    right: 0;
    background-color: red;
}

/* Centered content */

.centered {
    position: absolute;

    top: 50%;
    left: 50%;

    text-align: center;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Titles */

.heilpraxis {
    color: rgb(209, 103, 4);
}

.ikebana {
    color: white;
}

/* Backgrounds */

.praxis-bg {
    background-image: url("images/icon2.gif");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;

    background-color: rgb(255, 203, 155);
}

.ikebana-bg {
    background-image: url("images/ikebana_trans.gif");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;

    background-color: rgb(153, 204, 102);
}

/* Full clickable area */

.link {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 5;
}

/* Responsive */

@media screen and (max-width: 768px) {

    .split {
        width: 100%;
        height: 50%;
    }

    .left {
        top: 0;
    }

    .right {
        top: 50%;
    }

    .main {
        width: 100%;
        left: 0;
        margin-left: 0;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }
}
