@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: rgb(16, 23, 27);
    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: 1rem 2rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 2rem 0 1.5rem;
}

h2 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 2.25rem 0 1rem;
}

h2 i {
    color: rgb(120, 144, 156);
    font-size: 1.2rem;
}

ul {
    margin: 0 0 .75rem 1rem;
}

ul li {
    padding-bottom: .5rem;
}

.blocks {
    display: flex;
    gap: .75rem .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blocks span {
    background-color: rgb(233, 239, 242);
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgb(39, 50, 57);
    padding: 6px 12px;
    font-size: 0.875rem;
    border-radius: 9999px;
}

.blocks i {
    color: rgb(89, 110, 121);
    margin-left: -4px;
}

.button {
    display: flex;
    margin: 1.5rem 0;
}

.button a {
    padding: 10px 16px;
    min-width: 220px;
    background-color: rgb(216, 27, 93);
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: .2s;
}

.button a:hover {
    background-color: rgb(94, 4, 36);
}

.image {
    margin: 3rem 0;
}

.info {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 25%;
    padding: 0.75rem .5rem;
    text-align: center;
    background-color: rgb(244, 247, 248);
    border-radius: 12px;
}

.info p {
    font-size: .875rem;
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    margin: 1.5rem 0 .75rem;
}

.info i {
    color: rgb(120, 144, 156);
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin: 2.5rem 0;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

header {
    display: flex;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgb(208, 220, 227);
}

@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: 44rem) {
    #wrapper {
        padding: 1rem;
    }

    header,
    .button,
    article>.blocks:first-of-type {
        justify-content: center;
    }

    h1 {
        text-align: center;
        padding: 1.5rem 0;
    }

    h2 {
        font-size: 1.3rem;
        margin: 0 0 .5rem;
    }

    h2 i {
        font-size: 1rem;
    }

    .image,
    .iframe-wrapper {
        margin: 1.5rem 0;
    }

    .info {
        margin-bottom: 1.5rem;
    }

    footer .button {
        margin-bottom: .5rem;
    }
}

@media only screen and (max-width: 37rem) {
    .info {
        flex-wrap: wrap;
    }

    .info div {
        flex: 48%;
    }
}