@import url('../fonts/stylesheet.css');

:root {
    --brown: #57331f;
    --brown-dark: #3c2317;
    --card-bg: #e6e6e6;
    --pink: #e51b6d;
    --green-ok: #32d736;
    --green-ok-text: #fff;
    --red-bad: #c0392b;
    --sky: #72c8f3;
    --screen-h: 100dvh;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: 'Gilroy', 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    color: var(--brown);
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    height: var(--screen-h);
    min-height: 100vh;
    min-height: var(--screen-h);
    background: var(--sky) url('../im/bg.jpg') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.page-inner {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: var(--screen-h);
    min-height: 100vh;
    min-height: var(--screen-h);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.naming-header {
    width: min(59vw, 86vh);
    margin: 0 auto 2.5vh;
}

.naming-header img {
    display: block;
    width: 100%;
    height: auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-weight: 900;
    font-size: 2.8vh;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--pink);
    border: 3px solid #fff;
    border-radius: 999px;
    min-height: 7vh;
    padding: 0 7vh;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-1px);
}

.link-panel {
    display: none;
    margin: 0;
    font-size: 1.5vh;
    font-weight: 600;
}

.link-panel a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}
