/* nejsme vcerejsi, pouzivame moderni box model */
*, :after, :before { 
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

                                            /* 1 = menu + foto */

#one {
    height: 1200px;
    width: 100vw;
    position: relative;
}

    #menu {
        height: 70px;
        width: 100vw;
        position: absolute;
        z-index: 2;
        display: flex;
        justify-content: space-evenly;
        padding-top: 20px;
    }

    nav a {
        font-family: 'Amatic SC', cursive;
        font-weight: bolder;
        font-size: 2pc;
        color: white;
        text-decoration: none;
    }

    nav a:hover {
        border-bottom: 3px solid white;
    }

    #black {
        background-color: rgba(0,0,0,0.2);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        height: 100%;
        width: 100vw;
        position: absolute;
        top: 0px;
        left: 0px;
    }

    #foto {
        background-image: url(images/my.jpeg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        height: 100%;
        width: 100vw;
        position: absolute;
        top: 0px;
        left: 0px;
    }

    #mainheading {
        padding-top: 37.5%;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-weight: lighter;
        font-size: 9pc;
        color: red;
    }

    #smallheading {
        padding-top: 10px;
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-weight: bolder;
        font-size: 2pc;
        color: white;
    }

                                            /* 2 = nadpis + program */

#two {
    height: 800px;
    width: 100vw;
    position: relative;
    top: -130px;
    overflow: hidden;
}

    #paper {
        position: relative;
        display: block;
        width: 2100px;
        height: 800px;
    }

    .heading {
        position: relative;
        text-align: center;
        font-family: 'Amatic SC', cursive;
        font-weight: bolder;
        font-size: 4pc;
    }

    #two-a {
        position: absolute;
        top: -775px;
        height: 200px;
        width: 100vw;
        padding-top: 100px;
    }

    #two-b {
        position: absolute;
        top: 200px;
        height: 400px;
        width: 100vw;
        padding-right: 5%;
        padding-left: 5%;
        display: flex;
        justify-content: space-evenly;
    }

    .piktogram {
        height: 400px;
        width: 250px;
        position: relative;
    }

    .sedy {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
    }

    .barevny {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        visibility: hidden;
    }

    .piktogram:hover .sedy {
        visibility: hidden;
    }

    .piktogram:hover .barevny {
        visibility: visible;
    }



                                            /* 3 = nadpis + informace */

#three {
    position: relative;
    width: 100vw;
    top: -130px;
}

    #three-a {
        position: absolute;
        top: -25px;
        height: 100px;
        width: 100vw;
        padding-top: 25px;
    }

    #three-b {
        position: relative;
        top: 100px;
        width: 100vw;
        padding-right: 5%;
        padding-left: 5%;
    }

    .button {
        position: absolute;
        top: 20%;
        right: 5%;
        height: 400px;
        width: 400px;
    }

    .button:hover .sedy {
        visibility: hidden;
    }

    .button:hover .barevny {
        visibility: visible;
    }

    .polozka {
        display: flex;
        padding-bottom: 25px;
    }

    #obrad {
        width: 30%;
    }

    .text {
        font-family: 'Oswald', sans-serif;
    }

    .icon {
        height: 100px;
        width: 100px;
        margin: 25px 50px 25px 25px;
    }

    h1 {
        font-weight: 600;
        margin-top: 12px;
        margin-bottom: 0px;
    }

    p {
        font-weight: 300;
        font-size: x-large;
        margin-top: 8px;
        margin-bottom: 0px;
        letter-spacing: 1px;
    }

    #test {
        display: flex;
        padding-top: 400px;
    }

    .znamenko {
        height: 400px;
    }

    #plus {
        position: absolute;
        bottom: 0px;
        left: 10%;
    }

    #minus {
        position: absolute;
        bottom: 0px;
        right: 10%;
    }

    #ano {
        position: absolute;
        left: 25%;
        bottom: 6.5%;
    }

    #ne {
        position: absolute;
        right: 25%;
        bottom: 6.5%;
    }

                                            /* 4 = nadpis + mapa */

#four {
    position: relative;
    width: 100vw;
}

    #map {
        position: relative;
        width: 100%;
        z-index: -1;
        bottom: -10px;
    }

    #four-a {
        position: absolute;
        top: 0px;
        height: 100px;
        width: 100vw;
    }


                                            /* 5 = paticka */

#five {
    position: relative;
    height: 200px;
    width: 100vw;
    background-color: darkgrey;
}

    #five-a {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        position: relative;
        text-align: center;
        font-family: 'Amatic SC', cursive;
        font-weight: normal !important;
        font-size: 4pc;
        letter-spacing: 10px;
    }

    @media (min-width: 1200px) {
        .button {
            right: 10%;
        }
    
        #obrad {
            width: 50%;
        }
    }