﻿:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.25rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #FFF;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 424px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #7570b3;
    padding: 16px 1rem 10px;
}

header {
    display: flex;
    justify-content: center;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

h1 {
    margin: 1rem 0;
    font-size: 30px;
    line-height: 34px;
    text-align: center;
    font-weight: normal;
}

h1 span,
h3 span {
    font-size: 141%;
}

h1 small {
    display: block;
    font-size: 22px;
}

h2 {
    font-size: 32px;
    margin: 1rem 0;
    line-height: 34px;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-style: italic;
}

h3 {
    font-size: 24px;
    margin: 1rem 0;
    line-height: 1.25rem;
    text-align: center;
    font-weight: normal;
}

h3 small {
    display: block;
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;
    margin-top: 8px;
}

h4 {
    font-size: 22px;
    margin: 1rem 0;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-style: italic;
}

p {
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

@media all and (max-width:414px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        hyphens: auto;
    }
}