﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
}

#wrapper {
    position: relative;
    max-width: 380px;
    margin: 16px auto;
    border: 1px solid #000;
    padding: 12px 16px;
    overflow: hidden;
    text-align: center;
    font-size: 16px;
    line-height: 21px;
    color: #200E00;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

header {
    margin-bottom: 10px;
}

.top {
    font-size: 1.1em;
}

p {
    margin: 0;
}

h1 {
    padding: 0;
    font-size: 23px;
    line-height: 26px;
    color: #00559a;
}

h2 {
    margin: 4px 0;
    padding: 0;
    font-size: 17px;
    line-height: 23px;
    color: #00559a;
}

a {
    color: #200E00;
    text-decoration: none;
}

.link {
    color: #00559a !important;
    font-style: italic;
}

a:hover {
    text-decoration: underline;
}

footer {
    padding-top: 8px;
}

.padding {
    padding-top: 12px;
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
}

@media all and (max-width: 380px) {
    #wrapper {
        padding: 1rem;
        border: none;
    }

    br {
        display: none;
    }
}