@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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: #007AB4;
    font-family: "Montserrat", sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 500px;
    min-width: 250px;
    margin: 1rem auto;
    border: 0;
    background: #fff url('./bg.jpg') no-repeat top center;
    overflow: hidden;
    padding: 2.75rem 3rem;
    height: 665px;
}
p {
    padding-bottom: 1rem;
}
h1, h3 {
    margin: 0;
    font-size: 1.125em;
    line-height: 1.2;
    color: #F15C58;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 2.15em;
    line-height: 1.1;
    margin-bottom: 1rem;
    margin-top: -0.5rem;
}
a {
    color: inherit;
    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 {
    display: flex;
    justify-content: center;
}
footer p {
    padding-top: 0.5rem;
    color: #F15C58;
    position: relative;
    z-index: 1;
}
article, footer p {
    transform: rotate(-12.5deg) skewX(-12.5deg);
}
footer img {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #fff;
    }
    article, footer p {
        transform: none;
    }
    article {
        padding-top: 1rem;
    }
    footer img {
        position: static;
    }
    h2 {
        font-size: 1.75em;
    }
}