

/* This is just a small part of a reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

* {
    font-family: 'Inter', sans-serif;
}

    *, *::before, *::after {
        box-sizing: border-box;
    }

/* 2. Remove default margin and padding */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

/* 3. Make images easier to work with */
img, picture {
    max-width: 100%;
    display: block;
}

h1, a {
    color: #fff;
}


a {
    text-decoration: none;
    transition: all,0.3s;
    font-size: 16px;
    font-weight: 600;
}

    a:hover {
        color: #fff;
        text-decoration: underline;
    }

h1 {
    font-size: 22px;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    color: #D09156;
}

body {
    //background: url("./images/bg-image.jpg") 50% 50% no-repeat;
    background: linear-gradient(180deg, #48050E 0%, #7D0612 100%);
    background-size: cover;
    padding: 2rem;
    display: flex;
    justify-content: center;
    place-items: center;
    min-height: 100vh;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.main {
    text-align: center;
    border: 1px solid #1E2026;
    background: #12141A;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.50);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 55px;
    width: 100%;
    max-width: 463px;
    color: #fff;
}

.text {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.button {
    display: table;
    margin: 0 auto;
    line-height: 48px;
    background: #fff;
    color: #12141A;
    padding: 0 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: all, 0.3s;
}

    .button:hover {
        background: #f7f7f7;
        color: #12141A;
        text-decoration: none;
    }
