html, body {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    display: table;
}

body {
    font-family: 'Prompt', sans-serif;
    font-size: 14px;
    line-height: normal;
    font-weight: 300;
    color: #fff;
    text-align: center;
    padding: 30px;
    width: 100%;
    display: table-cell;
    background: url(../img/fundo.jpg) center no-repeat;
    background-size: cover;
}

body::before {
    content: ' ';
    background: rgba(0, 0, 0, 0.60);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

* {
    font-family: 'Prompt', sans-serif;
    line-height: normal;
}

svg, img {
    display: block;
    max-width: 100%;
    margin: auto;
}

header {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    z-index: 2;
    margin: 22px auto 80px;
    max-width: 1111px;
}

section > h1 {
    color: #EC0127;
    text-align: center;
    font-family: "Alumni Sans";
    font-size: 70px;
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

#wrapper {
    margin-top: 45px;
}

section > p {
    max-width: 1040px;
    margin: auto;
}

section > p strong {
    font-style: italic;
    font-weight: 600;
}

section > h2 {
    color: #EC0127;
    font-family: "Alumni Sans";
    font-size: 70px;
    font-style: italic;
    font-weight: 250;
    margin: 20px 0 0;
}

section > h2 strong {
    font-family: "Alumni Sans";
    font-weight: 600;
}

section > a {
    background: #1EC0CA;
    display: flex;
    height: 50px;
    width: 268px;
    margin: 20px auto 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 23px;
    border-radius: 35px;
    color: #EC0127;
    font-style: italic;
}

section > a:hover {
    color: #EC0127;
    background: #16a6af;
    text-decoration: none;
}

section > a svg {
    width: 25px;
    height: 25px;
    margin: 0;
    fill: #EC0127;
}

footer {
    position: relative;
    z-index: 2;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer ul li {
    margin: 0 12px;
}

footer ul li img {
    width: 40px;
    height: auto;
}

footer svg {
    margin: 17px auto 5px;
}

footer small {
    display: block;
    font-size: 10px;
    margin-top: 8px;
}

@media (max-width: 991px) {
    
    header svg {
        width: 150px;
        height: auto;
    }
    
    section {
        margin-bottom: 50px;
    }

    section > h1 {
        font-size: 50px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    section > h2 {
        font-size: 45px;
        line-height: 30px;
        margin-top: 40px;
        margin-bottom: 10px;
    }
    
}