body, html {
    overflow-x: hidden;
    background: rgb(247, 247, 248);
    width: 100%;
    height: 100%;
}

body, html, div, h1, p {
    margin: 0;
    padding: 0
}

a {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

p, h1, a, span {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

* {
    box-sizing: border-box
}

.global-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.logo {
    margin-bottom: 30px;
}

.logo a {
    font-size: 0;
}

.box-container {
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 2px,
    rgb(0 0 0 / 3%) 0px 100px 80px,
    rgb(0 0 0 / 2%) 0px 41.7776px 33.4221px,
    rgb(0 0 0 / 2%) 0px 22.3363px 17.869px,
    rgb(0 0 0 / 2%) 0px 12.5216px 10.0172px,
    rgb(0 0 0 / 1%) 0px 6.6501px 5.32008px,
    rgb(0 0 0 / 1%) 0px 2.76726px 2.21381px;
}

.title {
    font-weight: 900;
    font-size: 65px;
    color: #e32832;
    text-decoration: underline;
    margin-bottom: 15px;
}

.footer-container {
    margin-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-container * {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    transition: .3s;
}

.footer-container a:hover {
    color: #e32832;
}

.footer-container .separator {
    display: block;
    margin: 0 5px;
}

@media screen and (max-width: 576px) {
    .logo {
        margin-bottom: 20px;
    }

    .logo img {
        width: 170px;
    }

    .box-container {
        padding: 15px 15px;
    }

    .title {
        font-size: 50px;
    }

    .box-container p {
        font-size: 11px;
    }
}

@media screen and (max-height: 500px) {
    .global-container {
        justify-content: flex-start;
    }
}
