@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v31-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v31-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v31-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v31-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v31-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v31-latin-700.eot');
    src: url('../fonts/roboto-condensed-v31-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v31-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v31-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v31-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v31-latin-700.svg#RobotoCondensed') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Dancing Script';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/dancing-script-v29-latin-500.eot');
    src: url('../fonts/dancing-script-v29-latin-500.eot?#iefix') format('embedded-opentype'), url('../fonts/dancing-script-v29-latin-500.woff2') format('woff2'), url('../fonts/dancing-script-v29-latin-500.woff') format('woff'), url('../fonts/dancing-script-v29-latin-500.ttf') format('truetype'), url('../fonts/dancing-script-v29-latin-500.svg#DancingScript') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #474746;
    font: 14px / 1.4em "Roboto Condensed", sans-serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 15px 3px #ccc;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #7d9074;
    text-decoration: underline;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.1em;
    color: #7d9074;
    font-weight: 400;
    text-align: center;
    position: relative;
}

h1::before {
    content: "";
    background: #7d9074;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 14px;
    z-index: 10;
}

h1 span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 50;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

h2 {
    font-size: 17px;
    line-height: 1.1em;
    color: #7d9074;
    font-weight: 400;
    margin-bottom: 10px;
}

ul {
    margin: 0 0 20px 14px;
    padding-left: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 10px;
}

ul li::before {
    content: "★";
    color: #7d9074;
    position: absolute;
    top: -1px;
    left: -13px;
    font-size: 13px;
}

header .section {
    display: flex;
}

.section {
    padding: 1.5rem 3rem;
}

.gray {
    background-color: rgb(229, 229, 229);
}

.gray>*:last-child {
    margin-bottom: 0;
}

.font {
    font-family: "Dancing Script", cursive;
    font-size: 24px;
    font-weight: 500;
}

.star {
    margin: 0 auto;
}

footer {
    padding: .5rem 3rem;
    background: #4a4949;
    color: #fff;
    text-align: center;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .35rem;
}

.social .fa-brands {
    font-size: 18px;
    line-height: 1em;
}

.social img {
    height: 19px;
}

@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;
    }

    .section {
        padding: 1.5rem 2rem;
    }

    footer {
        padding: .5rem 2rem;
    }
}

@media only screen and (max-width: 40rem) {
    header .section {
        justify-content: center;
    }

    .section {
        padding: 1rem;
    }

    footer {
        padding: .5rem 1rem;
    }
}