@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 .625rem;
}

h1 {
    color: #0dbbef;
}

h2 {
    font-size: 1.187rem;
    text-decoration: 3px underline #0dbbef;
    margin: 1.25rem 0 0;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

header {
    padding: .625rem;
}

article {
    padding: 1.25rem 2.5rem;
}

element {
    text-align: center;
    display: block;
    margin: 1.25rem;
}

element a {
    color: #fff;
    background-color: #0dbbef;
    font-weight: bold;
    padding: .937rem;
    border-radius: .937rem;
}

element a:hover {
    background-color: #0a8eb5;
}

footer {
    text-align: center;
    margin: 1.25rem 0 0;
    line-height: 1.2;
    color: #fff;
    background-color: #0dbbef;
    padding: .625rem;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
}

@media only screen and (max-width: 37.5rem) {
    a {
        white-space: nowrap;
    }

    article {
        padding: 0;
    }
}

@media only screen and (max-width: 30rem) {
    header {
        text-align: center;
    }

    h1 {
        font-size: 1.562rem;
        line-height: 1;
    }

    h2 {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 23.438rem) {

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}
