@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
html {
    height: 100%;
}

body {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    box-shadow: 0 0 200px rgba(0, 0, 0, 0.27) inset;
    color: #292929;
    background-color: #eee;
    font-family: 'Open Sans', sans-serif;
}

a:link {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-shadow: 1px 1px 2px #ffffff;
    background-color: transparent;
    text-decoration: none;
    font-style: italic;
}

a:active {
    color: #ffffff;
    background-color: transparent;
    text-decoration: none;
}

header {
    position: fixed;
    height: 64px;
    width: 100%;
    margin-top: 10px;
    z-index: 1000;
}

main {
    margin-top: 80px;
    margin-bottom: 80px;
}

article {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 1px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
    padding: 15px;
}

footer {
    height: 80px;
    padding: 0;
    padding-top: 20px;
    margin: 0 auto;
    position: inherit;
    bottom: 0;
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 1vh;
}

ul.dots {
    padding-left: 25px;
    list-style-type: circle;
}

ul li {
    padding-left: 10px;
}

dl {
    padding-top: 5px;
}

dl dt {
    padding-top: 10px;
    padding-left: 10px;
}

dl dd {
    padding-left: 15px;
}

@media (min-width: 700px) {
    main {
        margin-bottom: 80px;
    }
    footer {
        height: 80px;
    }
    article {
        padding: 50px;
    }
}