/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

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


/* ==========================================
   Layout
========================================== */

body {

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    background: #FAF7F6;

}


/* ==========================================
   Placeholder
========================================== */

.placeholder {

    width: 320px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 70px;

}


/* ==========================================
   Logo (SVG)
========================================== */

.logo {

    display: block;
    width: 320px;
    height: 100px;

}


/* ==========================================
   Button
========================================== */

.button {

    display: inline-block;

    font-family: Inter, sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: .5px;
    text-decoration: none;

    color: #FAF7F6;
    background: #181716;

    padding: 14px 34px;

    border: 2px solid transparent;
    border-radius: 50px;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;

}


.button:hover {

    transform: scaleX(1.03);

    border: 2px solid #181716;

    background: #FAF7F6;

    color: #181716;

}


.button:focus-visible {

    outline: 2px solid #181716;
    outline-offset: 4px;

}