@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 800px;
    border: solid 2px #00ADEF;
    background: #F1EFD4;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.7rem;
    font-size: 1.892em;
    line-height: 1.1em;
    color: #00ADEF;
    text-align: center;
}
h1 small {
    font-size: 0.7em;
}
h2{
    font-size: 1em;
    line-height: 1.3;
    color: #000;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 25px;
}
ul li:before {
    content: "»";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
article {
    padding: 1rem 1.5rem;
}
footer {
    padding: 1rem 1.5rem;

    background: #00ADEF;
}
.name{
    padding-bottom: 0;
}
.location{
    display: flex;
    flex-wrap: wrap;
}
footer p{
    color: #fff;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
       
    }
}
