@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 500 1em/1.1'Teko', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #253F8E;
    overflow: hidden;
    padding: 0;
}
hr {
    border: none;
    background: #FFF;
    height: 2px;
    width: 335px;
    margin: 0.25rem 0 0.5rem;
    text-align: left;
}
p {
    padding-bottom: 0.5rem;
    font-size: 1.23em;
    line-height: 1.3em;
}
h1+p {
    padding-bottom: 0;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.3em;
    line-height: 1;
    font-weight: 500;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #FFF;
    text-decoration: underline;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.hl {
    margin-left: -1.5rem;
}
.hl>img:first-of-type {
    vertical-align: -12px;
}
header {
    padding: 0;
    position: relative;
}
article {
    padding: 1rem 2rem;
}
article p:last-of-type {
    font-size: 1.4em;
    line-height: 1.1;
}
article figure {
    margin: 0 0 0.25rem -1rem;
}
footer {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}
footer div {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 0 0.5rem;
    margin: 0.75rem 0 0 1.5rem;
}
.text {
    text-align: right;
    text-transform: uppercase;
    background: #FFF101;
    color: #000;
    width: fit-content;
    padding: 0.25rem 0.25rem 0;
    border-radius: 3px;
    transform: rotate(-4deg);
    font-size: 1.9em;
    line-height: 1.1;
    margin-top: 2rem;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header img {
        display: block;
    }
    p {
        text-align: left;
    }
    footer {
        padding: 0 1rem 2rem;
        justify-content: center;
        align-items: center;
        position: static;
    }
    footer div {
        margin-left: 1rem;
    }
    h1 br {
        display: none;
    }
    hr {
        width: 100%;
    }
    h1 {
        font-size: 1.5em;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem;
    }
    .hl {
        margin-left: 0;
    }
    .hl>img:first-of-type{
        display: block;
    }
}