* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    min-height: 100%;
}

body {
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #1f2937;
    background-color: #fff;
}

header p {
    font-weight: 500;
    font-size: 19px;
}

.logo {
    padding: 30px 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    position: relative;
}

article {
    padding: 30px 65px 0;
}

.button {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.button a {
    background: #ea4c6f;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 500;
}

.button a:hover {
    background: #ed6784;
}

footer {
    padding: 0 60px 50px;
}

p {
    margin: 0 0 20px;
}

header p {
    margin: 0;
}

h1 {
    font-size: 39px;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    position: absolute;
    bottom: 20px;
    left: 65px;
    padding-right: 16px;
}

h1 span {
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

h2 {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px;
}

ul {
    list-style: none;
    margin: 0 0 32px;
}

ul li {
    padding-left: 25px;
    margin: 10px 0;
}

li:before {
    content: "\2022";
    color: #1f2937;
    float: left;
    font-size: 25px;
    text-indent: -25px;
}

a {
    color: #1f2937;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    display: block;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    h1 {
        left: 16px;
        bottom: 16px;
    }

    h1 br {
        display: none;
    }

    .logo {
        padding: 16px;
    }

    article {
        padding: 16px 16px 0;
    }

    footer {
        padding: 0 16px 16px;
    }
}

@media only screen and (max-width:560px) {
    .logo {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }


    h1, .logo p {
        text-align: center;
    }

    h1 {
        font-size: 28px;
        position: static;
        color: #000;
        padding: 16px 16px 0;
    }
}