/* Font - Gothams */

/* regular */
@font-face {
    font-family: 'Gotham';
    src:
      url('font/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* bold */
@font-face {
    font-family: 'Gotham';
    src:
      url('font/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Gotham", Arial, Helvetica, sans-serif;
    color: #222;
}

* {
    box-sizing: border-box;
}

.menu {
    width: 100%;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.text-error {
    font-weight: bold;
    font-size: 6rem;
}

header {
    background-color: #fff;
    height: 88px;
    display: flex;
}

.logo-mobile {
    display: none;
}

h1 {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 0;
    margin-top: 24px;
}

p {
    font-size: 14px;
    margin: 0;
}

a {
    text-decoration: none;
}

main {
    text-align: center;
    max-width: 600px;
    margin: 180px auto;
    font-size: 14px;
}

.btn {
    background: #c51315;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    margin: 0 auto;
    line-height: 1;
    padding: 18px 24px;
    margin-top: 24px;
    text-transform: uppercase;
    align-items: center;
    transition: box-shadow ease-out 300ms, transform ease-out 300ms;
}


@media (max-width: 991.98px) {
    header {
        height: 60px;
    }

    .logo-mobile {
        display: block;
    }
}