* {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: "MalloryMP Light", Roboto, sans-serif, serif;
    font-size: 16px;
    color: #ffffff;
}

html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}

h1 {
    font-family: "MalloryMP Ultra", Roboto, sans-serif, serif;
    font-size: 12px;
}

.color-primary {
    color: #f1b100;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #161615;
    overflow: hidden;
    width: calc(100% - 32px);
    max-width:728px;
    min-height:calc(100% - 32px);
    margin: 0 auto;
    border: 16px solid #db2214;
}

.container .logo {
    width: auto;
    max-width: calc(100% - 32px);
}

.container h1 {
    font-family: "MalloryMP Ultra", Roboto, sans-serif, serif;
    font-size: 12vw;
    margin: 0 auto;
}

.container h2 {
    font-family: "MalloryMP Ultra", Roboto, sans-serif, serif;
    font-size: 7vw;
    margin: 0 auto;
}

.container h5 {
    font-family: "MalloryMP Ultra", Roboto, sans-serif, serif;
    font-size: 1.2rem;
    margin: 0 auto;
}

.text-center{
    text-align:center;
}

.button {
    font-family: "MalloryMP Light", Roboto, sans-serif, serif;
    background-color: #db2214;
    border-radius: 4px;
    border: none;
    color: #fff;
    box-shadow: 0 2px 2px 1px rgb(0 0 0 / 60%);
    width: calc(100% - 32px);
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    margin: 4px 2px;
    cursor: pointer;
    user-select: none;
}
.button:hover,
.button:active {
    background-color: #ff0000;
    color: #ffffff;
    box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%), 0px 4px 5px 0px rgb(0 0 0 / 14%), 0px 1px 10px 0px rgb(0 0 0 / 12%);
}

@media (min-width: 728px) {
    .container h1 {
        font-size: 3rem;
    }
    .container h2 {
        font-size: 3.4rem;
    }
    .container h5 {
        font-size: 1.6rem;
    }
    .button {
        width: 512px;
    }
}