@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 385px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #5080C1;
    background-color: #fff;
    overflow: hidden;
    padding: 0.7rem 0.7rem 0;
    text-align: center;
}
p {
    padding-bottom: 0.6rem;
}
h1, h2 {
    margin: 0;
    font-size: 1.85em;
    line-height: 1;
    color: #5080C1;
}

a {
    color: #231F20;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    padding: 0;
}
article {
    padding: 0;
}
footer {
    padding-left: 9.7rem;
    text-align: left;
    font-size: 0.9em;
    line-height: 1.1;
}

footer img {
    position: absolute;
    bottom: 14px;
    left: 11px;
  }

@media only screen and (max-width:384px) {
    body {
        font-size: 1.2em;
    }

    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0.7rem;
    }

    footer {
        padding-left: 0;
        text-align: center;
        line-height: 1.2;
    }
    
    footer img {
        position:static;
      }
    
      i br {
        display: none;
      }

    h1, h2 {
        font-size: 1.6em;
    }
}