@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 3rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.2rem;
    line-height: 1.3;
    text-align: center;
    padding: 2rem 0;
}

h1 span {
    display: block;
    padding-top: 1rem;
}

h2 {
    font-size: 1rem;
    padding-bottom: 1rem;
}

h2 span {
    font-weight: normal;
}

h3 {
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    color: #5c5c5c;
}

ul {
    padding: 0 0 1rem 1rem;
}

.flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 2rem 0;
}

.circle {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.circle p {
    font-size: .938rem;
    padding-bottom: 0;
}

.yellow {
    background-color: #eaab20;
}

.dark {
    background-color: #24377c;
}

.green {
    background-color: #97ab7a;
}

.blue {
    background-color: #7c96c7;
}

footer .circle {
    width: 15rem;
    height: 15rem;
    flex-direction: column;
}

footer a.circle p {
    color: #fff;
    font-size: 1.5rem;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 46rem) {
    #wrapper {
        padding: 1rem;
    }

    footer .flex {
        padding: 0;
    }
}