@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1.1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1;
    color: #5F89A8;
    font-weight: 700;
}
h1 span {
    font-size: 0.7em;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    display: flex;
    justify-content: space-between;
    gap: 0 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}
footer{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .hide_m{
        display: none;
    }
    p {
        text-align: left;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    p a{
        display: inline-block;
    }
}