body {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
    position: sticky;
    top: 0px;
    background-color: white;
    padding: 5px;
}

nav a {
    color: black;
}

header {
    font-size: 50pt;
    font-weight: bold;
}

img {
    width: 200px;
    height: 200px;
    float: right;
    margin: 0px 5px;
}

.caption {
    display: none;
}

.story {
    margin: 30px 15px;
    border-bottom: 3px black solid;
    min-height: 300px;
}

@media only screen and (min-width: 500px) {
    p {
        font-weight: 18pt;
    }
    .story {
        border-bottom: 3px black dotted;
    }
}

@media only screen and (min-width: 768px) {
    .caption {
        display: block;
    }

    img {
        float: none;
        height: 300px;
        width:300px;
    }
}

@media only screen and (min-width: 1024px) {
    nav a {
        display: block;
    }

    nav {
        position: fixed;
        left: 0px;
        background-color:lightcyan;
    }

    img {
        height: 500px;
        width: 800px;
    }
    body {
        margin: 5px 50px;
    }
    p {
        margin: 5px 200px;
    }
}