﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper {
    position: relative;
    max-width: 640px;
    margin: 12px auto;
    border: 8px solid #00A9E1;
    padding: 26px 16px 16px;
    overflow: hidden;
    font-size: 14px;
    line-height: 19px;
    color: #001758;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section {
    width: 48%;
}

header {
    padding: 0;
}

article {
    padding: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    margin-bottom: 0;
}

p {
    margin-bottom: 12px;
}

h1 span {
    font-size: 16px;
    line-height: 0;
}

h1 {
    padding: 13px;
    font-size: 56px;
    line-height: 1;
    background: #fff;
    box-shadow: 1px 1px 9px #474747;
    transform: rotate(-2deg);
    width: 90%;
}

h2 {
    font-size: 48px;
    line-height: 1;
    background: #00A9E1;
    padding: 25px 20px 15px;
    color: #fff;
    box-shadow: 1px 1px 9px #818181;
    max-width: 400px;
    text-align: center;
    margin: -7px 0 20px 14px;
}

h3 {
    font-size: 17px;
    margin-bottom: 2px;
    line-height: 21px;
}

a {
    color: #001758;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin-bottom: 14px;
    list-style: none;
}

ul li {
    padding-left: 14px;
}

li:before {
    content: "\2022";
    float: left;
    font-size: 18px;
    text-indent: -13px;
}

.fontsize {
    font-size: 16px;
}

@media (max-width: 639px) {
    #wrapper {
        margin: 0;
        border: none;
    }
}

@media (max-width: 539px) {
    section {
        width: 100%;
    }

    h2 {
        font-size: 10vw;
        display: inline-block;
    }

    h1 {
        width: auto;
        font-size: 10vw;
    }

    .center {
        text-align: center;
    }

    footer p {
        text-align: center;
    }

    footer {
        flex-direction: column;
        gap: 10px;
    }
}