@charset "UTF-8";

* {

    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;

}

img {

    width: 100%;
    height: auto;
    vertical-align: bottom;

}

header {

    /*background: #EEE;*/
    position: relative;

}

header h1 {

    /*text-align: center;*/
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 1rem;
    color: #ffffff;

}

nav {

    position: absolute;
    top: 2rem;
    right: 1rem;

}

nav ul {

    padding-bottom: 1rem;
    margin: 0;
    text-align: center;

}

nav ul li {

    display: inline-block;
    margin: 0 10px;

}

nav ul li a {

    font-weight: bold;
    color: #ffffff;

}

body {

    height: 100%;

}

#wrap {

    display: flex;
    flex-direction: column;
    min-height: 100vh;

}

section {

    background: #FFF;
    padding: 20px;

}

.sticky {

    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

}

footer {

    background: #333;
    color: #FFF;
    text-align: center;
    padding: 1rem;
    width: 100%;

}