/* layout */

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item {
    margin-bottom: 10px;
    position: relative;
}

.start {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

@media (orientation: landscape) {

    .stretchEntry {
        height: 100vh;
    }

    .stretchEntry img {
        height: 100%;
    }

    .pointingDown,
    .pointingUp {
        position: absolute;
        bottom: 0px;
        right: -34px;
    }
}

@media (orientation: portrait) {

    .stretchEntry {
        width: 96vw;
    }

    .stretchEntry img {
        width: 100%;
    }

    .index,
    .pointingDown,
    .pointingUp {
        display: none;
    }
}

/* style */

body {
    background-color: black;
}

.stretchEntry img {
    border: 2px solid #D4DAF7;
    border-radius: 20px;
}

div * {
    font-size: 28px;
}

h1 {
    font-size: 54px;
}

.nav {
    margin: 0px 0px 28px 0px;
    padding: 10px 10px 10px 10px;

    border-radius: 20px;
    border: 2px solid #D4DAF7;;

    color: #342609;
    background: #FBA90A;

    /*width: 400px;*/

    text-align: center;
}

.index img {
    border-radius: 20px;
}

a:link, a:visited, a:active, a:hover {
    color: #183BF0;
    /*text-decoration: none;*/
    font-weight: bolder;
}
