* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    background: none;
    font-family: "Helvetica", Arial, sans-serif;
    color: #191919;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
}

#wrapper {
    max-width: 930px;
    margin: 16px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    padding: 20px 40px 40px;
}

#wrapper .hide {
    display: none;
}

#wrapper .nobr {
    white-space: nowrap;
}

#wrapper header {
    padding: 0;
}

#wrapper article {
    padding: 0;
}

#wrapper footer {
    padding: 0;
}

#wrapper p {
    margin-bottom: 16px;
}

#wrapper strong {
    font-weight: 700;
}

#wrapper h1 {
    margin: 20px 0 25px;
    font-size: 35px;
    font-weight: 700;
    color: #e00b25;
    text-align: center;
}

#wrapper .block {
    display: block;
}

#wrapper h3 {
    margin-bottom: 8px;
    font-size: 30px;
    font-weight: 500;
}

#wrapper :is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

#wrapper ul {
    margin-bottom: 30px;
    list-style: none;
}

#wrapper ul li {
    padding-left: 17px;
    position: relative;
}

#wrapper ul li:not(:last-child) {
    margin-bottom: 4px;
}

#wrapper ul li:before {
    content: "\002022";
    font-size: 23px;
    font-family: Arial, sans-serif;
    position: absolute;
    top: -2px;
    line-height: 1;
    left: 0;
}

#wrapper img {
    max-width: 100%;
    vertical-align: middle;
}

#wrapper .logo {
    display: flex;
    justify-content: center;
}

#wrapper .banner {
    margin: 25px 0 30px;
}

#wrapper .banner img {
    border-radius: 16px;
}

#wrapper .apply a {
    display: inline-block;
    background: #191919;
    color: #fff;
    border-radius: 4px;
    padding: 14px 42px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: background-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
#wrapper .apply a:hover {
    background: #e00b25;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 929px) {
    #wrapper {
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 20px 16px 30px;
    }

    #wrapper :is(p, ul) {
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    #wrapper .block {
        display: inline;
    }
}

@media (max-width: 499px) {
    #wrapper h1 {
        font-size: 30px;
    }
}